-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexPlantilla.html
More file actions
46 lines (40 loc) · 1.15 KB
/
indexPlantilla.html
File metadata and controls
46 lines (40 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Demo</title>
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="stylesheet" href="index.css" type="text/css">
</head>
<body>
<header>
<h1>DEMO</h1>
</header>
<input type="checkbox" id="check">
<label for="check">
<img src="menu.png">
</label>
<nav>
<ul>
<li><a href="">HOME</a></li>
<li><a href="">HOME1</a></li>
<li><a href="">HOME2</a></li>
<li><a href="">HOME3</a></li>
<li><a href="">HOME4</a></li>
</ul>
</nav>
<section>
<article>
<div class="div1">x</div>
</article>
<article>
<div class="div2">y</div>
</article>
</section>
<footer>
pie de demo
</footer>
</body>
</html>