-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.html
108 lines (86 loc) · 3.2 KB
/
formulario.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-7">
<title>Formulario VISOR INECOA.</title>
<link type="text/css" rel="stylesheet" href="estilo.css">
<style type="text/css" media="screen">
div {
margin-bottom: 1.5rem;
font-family: Tahoma, Verdana, sans-serif;
}
label {
display: block;
}
</style>
</head>
<body>
<form action="formulario.php" method="POST">
<div>
<label>LAYER : CAPA : SUBCATEGORIA : </label><br>
<select type="text" value="" name="subcategoria" id="">
<option value="geomorfologia"><font size="3" face="Verdana" color="black">GEOMORFOLOGIA</option>
<option value="edafologia"><font size="3" face="Verdana" color="black">EDAFOLOGIA</option>
<option value="vulcasismi"><font size="3" face="Verdana" color="black">VULCANISMO Y SISMOLOGIA</option>
<option value="glaciologia"><font size="3" face="Verdana" color="black">GLACIOLOGIA</option>
<option value="geologia"><font size="3" face="Verdana" color="black">GEOLOGIA</option>
</select>
<!-- <input type="text" value="" name="ecorregion" id=""/> -->
</div>
<div>
<label>Latitud</label>
<input type="text" value="" name="latitud" id=""/>
</div>
<div>
<label>Longitud</label>
<input type="text" value="" name="longitud" id=""/>
</div>
<div>
<label>ID</label>
<input type="text" value="" name="id" id=""/>
</div>
<div>
<label>Punto</label>
<input type="text" value="" name="punto" id=""/>
</div>
<div>
<label>Titulo</label>
<input type="text" value="" name="titulo" id=""/>
</div>
<div>
<label>Descripcion</label>
<textarea name="descripcion" id=""></textarea>
</div>
<div>
<label>Institucion</label>
<input type="text" value="" name="institucion" id=""/>
</div>
<div>
<label>Ecorregion</label><br>
<select type="text" value="" name="ecorregion" id="">
<option value="PUNA"><font size="3" face="Verdana" color="black">PUNA</option>
<option value="ALTOS ANDES"><font size="3" face="Verdana" color="black">ALTOS ANDES</option>
<option value="MONTES SIERRAS BOLSONES"><font size="3" face="Verdana" color="black">MONTES SIERRAS BOLSONES</option>
<option value="SELVA de YUNGAS"><font size="3" face="Verdana" color="black">SELVA de YUNGAS</option>
<option value="CHACO SECO"><font size="3" face="Verdana" color="black">CHACO SECO</option>
</select>
<!-- <input type="text" value="" name="ecorregion" id=""/> -->
</div>
<div>
<label>Fuente</label>
<input type="text" value="" name="fuente" id=""/>
</div>
<div>
<label>Altura</label>
<input type="text" value="" name="altura" id=""/>
</div>
<div>
<label>URL</label>
<input type="text" value="http://" name="url" id=""/>
</div>
<div>
<button type="submit"><font size="3" face="Verdana" color="black">Enviar...</button>
</div>
</form>
</body>
</html>