-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·48 lines (43 loc) · 1.2 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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Solo Leveling Arise</title>
<link rel="shortcut icon" href="./img/fav-solo.png" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<nav>
<a
href="#"
class="nav-icon"
aria-label="visit homepage"
aria-current="page"
>
<img src="./img/Sololeveling-logo.png" alt="sla icon" />
</a>
<div class="main-navlinks">
<button
class="hamburger"
type="button"
aria-label="Toggle navigation"
aria-expanded="false"
>
<span></span>
<span></span>
<span></span>
</button>
</div>
<div class="navlinks-container">
<a href="#" aria-current="page">présentation</a>
<a href="#">sung</a>
<a href="#">chasseurs</a>
<a href="#">ombres</a>
<a href="#">coupons</a>
</div>
</nav>
<script src="./script.js"></script>
</body>
</html>