-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpictures.html
43 lines (43 loc) · 1.27 KB
/
pictures.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Navbar</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
type="text/css"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script
src="https://kit.fontawesome.com/0820357b9d.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="nav-bar">
<ul>
<form>
<div class="search">
<i class="search-icon fa-solid fa-magnifying-glass"></i>
<input class="search-input" type="search" placeholder="search" />
</div>
</form>
<li class="">
<a href="home.html"><i class="fa fa-home"></i> Home</a>
</li>
<li class="">
<a href="About.html"><i class="fa fa-user-circle"></i> About</a>
</li>
<li class="">
<a href="socials.html"><i class="fa fa-user"></i> Socials</a>
</li>
<li class="active">
<a href="pictures.html"><i class="fa fa-picture-o"></i> Pictures</a>
</li>
<li class="">
<a href="projects.html"><i class="fa fa-file-text"></i> Projects</a>
</li>
</ul>
</div>
</body>
</html>