-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
121 lines (94 loc) · 3.3 KB
/
contact.html
File metadata and controls
121 lines (94 loc) · 3.3 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Proyecto con JavaScript</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link id="theme" rel="stylesheet" type="text/css" href="css/green.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- JQUERY UI -->
<link rel="stylesheet" href="js/jquery-ui-1.12.1/jquery-ui.min.css">
<link rel="stylesheet" href="js/jquery-ui-1.12.1/jquery-ui.structure.min.css">
<link rel="stylesheet" href="js/jquery-ui-1.12.1/jquery-ui.theme.min.css">
<script type="text/javascript" src="js/jquery-ui-1.12.1/jquery-ui.min.js"></script>
-->
<!-- form validator -->
<script type="text/javascript" src="js/jquery.form-validator.min.js"></script>
</head>
<body>
<div id="selector-theme">
<div id="to-green"></div>
<div id="to-red"></div>
<div id="to-blue"></div>
</div>
<section id="global">
<!-- CABECERA -->
<header>
<div id="logo">
<h1>Proyecto JS</h1>
</div>
<div class="clearfix"></div>
<nav id="menu">
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="reloj.html">Reloj</a></li>
<li><a href="about.html">Sobre mi</a></li>
<li><a href="contact.html">Contacto</a></li>
</ul>
</nav>
</header>
</div>
<!-- CONTENIDO -->
<section id="content">
<div id="box">
<!-- CARGAR FORMULARIO DE CONTACTO -->
<h2>Contacto</h2>
<form action="" method="POST" id="form_contact">
<label for="name">Nombre</label>
<input type="text" name="name" data-validation="alphanumeric" />
<label for="surname">Apellidos</label>
<input type="text" name="surname"data-validation="alphanumeric" />
<label>Email</label>
<input type="email" name="email" data-validation="email" />
<label for="sex">Sexo</label>
<select name="sex" data-validation="required">
<option value="man">Hombre</option>
<option value="woman">Mujer</option>
</select>
<label for="date">Fecha de nacimiento</label>
<input type="text" name="date" data-validation="date" data-validation-format="dd-mm-yyyy" />
<label for="years">Edad</label>
<input type="number" name="years" data-validation="number" />
<input type="submit" value="Enviar">
</form>
</div>
<aside id="sidebar">
<div id="about">
<h4><span>¿Quien soy?</span></h4>
<img src="img/caracoles.jpg" />
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus fermentum, ligula aliquam egestas feugiat, nunc velit sagittis purus, in tempor urna elit ut risus.</p>
</div>
<div id="login">
<h4><span>Identificate</span></h4>
<form>
<label for="name">Nombre</label>
<input type="text" name="name" id="form_name" />
<label for="email">Correo</label>
<input type="text" name="email" />
<label for="password">Contraseña</label>
<input type="text" name="password" />
<input type="submit" value="Entrar" />
</form>
</div>
</aside>
<div class="clearfix"></div>
</section>
</section>
<footer>
Proyecto JavaScript - Bryan Santos ©
<a href="#" class="subir">Ir arriba</a>
</footer>
</body>
</html>