-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 969 Bytes
/
index.html
File metadata and controls
35 lines (34 loc) · 969 Bytes
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300">
<link rel="stylesheet" href="./css/font.css">
<link rel="stylesheet" href="./css/main.css">
<title>Menu Top</title>
</head>
<body>
<input type="checkbox" id="btn-nav" class="checkbox">
<header>
<div class="header-container">
<img class="header-logo" src="./img/logo.png">
<label for="btn-nav" class="btn-label">
<div class="header-button"></div>
</label>
</div>
</header>
<nav class="menu">
<ul>
<li>Home</li>
<li>About</li>
<li>Contacto</li>
</ul>
<ul>
<a href="" class="icon-facebook"></a>
<a href="" class="icon-twitter"></a>
<a href="" class="icon-youtube"></a>
<a href="" class="icon-instagram"></a>
</ul>
</nav>
</body>
</html>