-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="./assets/images/favicon.png" type="image/png">
<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>Instagram</title>
<!-- Navbar CSS -->
<link rel="stylesheet" href="./assets/css/navbar.css">
<!-- Font awesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<!-- Navbar Start -->
<nav class="navbar">
<div class="nav-container">
<div class="brand">
<img src="./assets/images/insta-logo.png" alt="logo" />
</div>
<div class="search-div">
<input type="text" placeholder="Search" class="search-bar" />
</div>
<div class="nav-menu">
<i class="fas fa-home nav-item"></i>
<i class="fab fa-facebook-messenger nav-item stroke-transparent"></i>
<i class="far fa-compass nav-item"></i>
<i class="far fa-heart nav-item"></i>
<img src="./assets/images/user-profile.jpg" alt="user-profile" class="user-profile nav-item" />
</div>
</div>
</nav>
<!-- Navbar End -->
</body>
</html>