-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 2.21 KB
/
index.html
File metadata and controls
62 lines (53 loc) · 2.21 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glim</title>
<!--Font awesome icons cdn-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--Custom style.css file-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Header-->
<header id="header" class="shadow bg-light">
<nav class="container navbar">
<a href="/index.html" class="nav-brand text-dark">
Glim
</a>
<!--toggle button-->
<button class="toggle-button">
<span>
<i class="fa-solid fa-bars"></i>
</span>
</button>
<!--Collapse on toggle button click-->
<div class="collapse">
<ul class="navbar-nav">
<a href="#" class="nav-link">Home</a>
<a href="#" class="nav-link">Blog</a>
<a href="#" class="nav-link">Pages</a>
<a href="#" class="nav-link">Categories</a>
<a href="#" class="nav-link">About</a>
<a href="#" class="nav-link">Contact</a>
</ul>
</div>
<!--Collapse on toggle button click-->
<div class="collapse">
<ul class="navbar-nav">
<div class="search-box">
<a href="#" class="nav-link"><i class="fas fa-search"></i></a>
</div>
<a href="#" class="nav-link"><i class="fab fa-facebook"></i></a>
<a href="#" class="nav-link"><i class="fab fa-twitter"></i></a>
<a href="#" class="nav-link"><i class="fab fa-instagram"></i></a>
<a href="#" class="nav-link"><i class="fab fa-dribble"></i></a>
</ul>
</div>
</nav>
</header>
<!--custom main.js-->
<script src="main.js"></script>
</body>
</html>