-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIngresos.html
62 lines (51 loc) · 1.6 KB
/
Ingresos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<HTML>
<HEAD>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<TITLE>Pedidos</TITLE>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1, h2 {
margin: 1em 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 0.5em 0;
}
a {
text-decoration: none;
color: #0077cc;
}
a:hover {
text-decoration: underline;
}
</style>
</HEAD>
<BODY>
<H1>INGRESO DE PRODUCTOS</H1>
<form action='Ingresos' method='GET' name='Productos'>
<H3> Seleccione producto </H3>
<input TYPE='radio' NAME='Producto' VALUE='Shampoo'> Shampoo <br>
<input TYPE='radio' NAME='Producto' VALUE='Pasta de dientes'> Pasta de dientes <br>
<input TYPE='radio' NAME='Producto' VALUE='Microondas'> Microondas <br>
<input TYPE='radio' NAME='Producto' VALUE='Tostadora'> Tostadora <br>
<input TYPE='radio' NAME='Producto' VALUE='Amoniaco'> Amoniaco <br>
<input TYPE='radio' NAME='Producto' VALUE='Jabon'> Jabon <br>
<input TYPE='radio' NAME='Producto' VALUE='Altavoz'> Altavoz <br>
<input TYPE='radio' NAME='Producto' VALUE='Impresora'> Impresora <br><br>
Cantidad: <input NAME='cantidad' size='10'><br>
<input TYPE='SUBMIT' VALUE='Enviar'><br>
<BR><A HREF='index.html'>Volver al menú</A>
</form>
</BODY>
</HTML>
<head>
<title>Pedidos</title>
</head>