-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodernizr.html
26 lines (26 loc) · 1.07 KB
/
modernizr.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>Mi primera página</title>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/base/jquery.ui.all.css" />
<link rel="stylesheet" href="datetime-local-polyfill/datetime-local-polyfill.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/modernizr-custom.js"></script>
<script type="text/javascript" src="datetime-local-polyfill/datetime-local-polyfill.js"></script>
<script src="js/mimodernizr.js"></script>
</head>
<body>
<!-- Aquí va la parte visible -->
<nav>
<ul>
<li>
<a href="#">Inicio</a>
</li>
</ul>
</nav>
<h1>Mi título</h1>
<input id="campo" name="campo" type="datetime-local"/>
</body>
</html>