forked from Real-Dev-Squad/website-welcome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.html
30 lines (27 loc) · 932 Bytes
/
navbar.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>navbar</title>
<link rel="stylesheet" href="css/pages/navbar.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<input type="checkbox" id="nav-toggle">
<label for="nav-toggle" class="burger-menu">
<img src="img/logos/burger.jpg" width="35px" height="auto" alt="">
</label>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="code-of-conduct.html">Code of Conduct</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="discord.html">Discord</a></li>
</ul>
<div class="login">
<a href="https://github.com/login/oauth/authorize?client_id=23c78f66ab7964e5ef97" id="login-btn">Login</a>
</div>
</nav>
</body>
</html>