-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (24 loc) · 929 Bytes
/
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Responsive for Mobile device -->
<title>Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<!-- NAVIGATION BAR -->
<div class="navbar">
<a class="navbarLeftTitle unselectableLabel">PORTFOLIO</a>
<i id="hamburger" class="fa-solid fa-bars"></i>
<div id="navbarRightLink" class="navbarRightLink">
<a class="active" id="menu1">Menu</a>
<a id="menu2">Présentation</a>
<a id="menu3">Projets</a>
<a id="menu4">À propos</a>
</div>
</div>
<script src="assets/js/responsive.js"></script>
</body>
</html>