-
Notifications
You must be signed in to change notification settings - Fork 4
/
dia2.html
182 lines (152 loc) · 5.89 KB
/
dia2.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dia 2</title>
<link href='http://fonts.googleapis.com/css?family=Grand+Hotel' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/dia2.css">
<link rel="stylesheet" href="http://jquerytools.org/media/css/dateinput/skin1.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="page" role="application">
<header>
<h1 role="banner">Higher Blog</h1>
<nav role="navigation">
<ul>
<li><a href="#">enlace</a></li>
<li><a href="#">enlace</a></li>
<li><a href="#">enlace</a></li>
<li><a href="#">enlace</a></li>
<li><a href="#">enlace</a></li>
</ul>
</nav>
</header>
<section id="main" role="main">
<header>
<h1> Proximos cursos de la Escuela </h1>
</header>
<article>
<header>
<hgroup>
<h1>Curso de HTML5/CSS3</h1>
<h2>Nocturno</h2>
</hgroup>
<time datetime="2012/12/10">10 de Diciembre del 2012</time>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat saepe alias voluptatibus fugiat nemo voluptates officia omnis praesentium quidem ea atque neque molestias itaque quia porro id sapiente aliquid cumque?</p>
<aside>
<a href="#">Inscribirse en este curso</a>
</aside>
<footer role="contentinfo">
<p>Instructor Sergio Marin</p>
</footer>
</article>
<article>
<header>
<hgroup>
<h1>Curso de HTML5/CSS3</h1>
<h2>Nocturno</h2>
</hgroup>
<time datetime="2012/12/10">10 de Diciembre del 2012</time>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat saepe alias voluptatibus fugiat nemo voluptates officia omnis praesentium quidem ea atque neque molestias itaque quia porro id sapiente aliquid cumque?</p>
<footer>
<p>Instructor Sergio Marin</p>
</footer>
</article>
<section class="formularios">
<header>
<h3> Formularios en HTML5!! </h3>
</header>
<form id="formualariohtml5" action="#" method="post">
<fieldset>
<legend>
Mi Formulario
</legend>
<div class="errores"></div>
<div class="campo">
<label for="nombre">Nombre</label>
<input required="true" type="text" id="nombre" name="nombre">
</div>
<div class="campo">
<label for="correo">Correo</label>
<input required placeholder="[email protected]" type="email" id="correo" name="correo">
</div>
<div class="campo">
<label for="telefono">Telefono</label>
<input type="tel" id="telefono" name="telefono">
</div>
<div class="campo">
<label for="edad">Edad</label>
<input type="number" min="18" max="24" step="0.5" id="edad" name="edad">
</div>
<div class="campo">
<label for="cantidad">Cantidades</label>
<input type="range" min="0" max="10" step="0.5" id="cantidad" name="cantidad">
<span id="numero_cantidad"></span>
</div>
<div class="campo">
<label for="fecha"> Fecha </label>
<input type="date" id="fecha" name="fecha">
</div>
<div class="campo">
<label for="direccion">Direccion Web</label>
<input type="url" id="direccion" name="direccion">
</div>
<div class="campo">
<label for="autocompletado">Algo</label>
<input list="browsers">
<datalist id="browsers">
<option value="IE">Internet Explorer</option>
<option value="Firefox">1.5</option>
<option value="Firefox">1.2</option>
<option value="Chrome">Chrome 2</option>
<option value="Opera">Opera 2</option>
<option value="Safari">Safari 2</option>
</datalist>
</div>
<div class="actions">
<input type="submit" value="Guardar, Procesar, Enviar o hacer algo pero quiero terminar este formulario">
</div>
</fieldset>
</form>
<footer>
<p><b>NOTA</b>: Los formularios en HTML5 no son soportados por los browser antiguos (IE), pero si por todos los dispositivos moviles y browser modernos</p>
</footer>
</section>
<footer>
<p><b>Nota:</b> Recuerda que trabajaremos hasta el 15 de diciembre y regresamos el 7 de enero</p>
</footer>
</section>
<!-- #main -->
<section id="sidebar" role="complementary">
<header>
<h2>Navegacion</h2>
</header>
<nav role="navigation">
<ul>
<li><a href="#">enlaces</a></li>
<li><a href="#">enlaces</a></li>
<li><a href="#">enlaces</a></li>
<li><a href="#">enlaces</a></li>
<li><a href="#">enlaces</a></li>
</ul>
</nav>
</section>
<!-- #sidebar -->
<footer class="footer">
<p>Todos los derechos reservados a MI!</p>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<!-- Form tools: Dateinput, Rangeinput and Validator. No jQuery library. ( Kb) -->
<script type="text/javascript" src="js/jquery.tools.min.js"></script>
<script src="http://html5form.googlecode.com/svn/trunk/jquery.html5form-1.5-min.js"></script>
<script src="js/modernizr.js"></script>
<script type="text/javascript" src="js/dia3.js"></script>
</body>
</html>