-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
156 lines (136 loc) · 4.6 KB
/
contacto.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
<link rel="shortcut icon" href="/static/img/rudeus.ico" type="image/x-icon">
<style>
body {
font-family: "Lucida Console", "Courier New", monospace;
background: linear-gradient(to right, rgb(189, 189, 255), rgb(255, 233, 236));
padding: 0;
margin: 0;
}
header {
text-align: center;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #04AA6D;
}
h1 {
background-color: black;
padding: 10px;
margin: 0;
color: #92a4ff;
}
input[type=text],
input[type=email],
textarea,
select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=submit] {
width: 100%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
div.contenedor-formulario {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.footer {
background-color: #333;
color: #FFF;
padding: 10px;
text-align: center;
clear: both;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Rudeus Greyrat</h1>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="preferencias.html">Preferencias</a></li>
<li><a href="audiovisuales.html">Audiovisuales</a></li>
<li><a class="active" href="contacto.html">Contacto</a></li>
</ul>
</nav>
</header>
<div class="contenedor-formulario">
<form>
<label for="nombre">Nombre: </label>
<input type="text" id="nombre" name="nombre" placeholder="Escribí aquí tu nombre" required minlength="3">
<label for="apellido">Apellido: </label>
<input type="text" id="apellido" name="apellido" placeholder="Escribí aquí tu apellido" required minlength="3">
<label for="mail">Email: </label>
<input type="email" id="mail" name="mail" placeholder="Escribí aquí tu mail" required>
<label for="pais">País: </label>
<select name="pais" id="pais">
<option value="Argentina">Argentina</option>
<option value="Chile">Chile</option>
<option value="Bolivia">Bolivia</option>
<option value="Perú">Perú</option>
<option value="Uruguay">Uruguay</option>
<option value="España">España</option>
<option value="Colombia">Colombia</option>
<option value="Venezuela">Venezuela</option>
<option value="Paraguay">Paraguay</option>
<option value="Ecuaador">Ecuaador</option>
</select>
<label for="comentario">Comentario: </label>
<textarea name="comentario" id="comentario" placeholder="Escribí aquí tu comentario"></textarea>
<label for="motivo">Motivo de contacto: </label>
<input type="radio" id="motivo" name="motivo"><i>Soy fan</i>
<input type="radio" id="motivo" name="motivo"><i>Quiero una remera</i>
<input type="radio" id="motivo" name="motivo"><i>Comerciales</i>
<input type="radio" id="motivo" name="motivo"><i>Reclamos</i>
<input type="submit" value="Enviar">
</form>
</div>
<footer class="footer">
<p>Derechos reservados © 2023</p>
</footer>
</body>
</html>