-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.38 KB
/
index.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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header class="header">
<input type="checkbox" id="check" >
<label for="check" class="icons">
<i class='bx bx-menu' id="menu_icon"></i>
<i class='bx bx-x' id="close_icon"></i>
</label>
<label class="header__logo">LOGO</label>
<nav class="header__nav">
<ul class="header__ul">
<li class="header__li"><a class="header__a" style="--i:0; " href="#">Home</a></li>
<li class="header__li"><a class="header__a" style="--i:1; " href="#">About</a></li>
<li class="header__li"><a class="header__a" style="--i:2; " href="#">Gallery</a></li>
<li class="header__li"><a class="header__a" style="--i:3; " href="#">Services</a></li>
<li class="header__li"><a class="header__a" style="--i:4;" href="#">Contact</a></li>
</ul>
</nav>
</header>
<main class="main">
</main>
</body>
</html>