-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
70 lines (59 loc) · 1.33 KB
/
gallery.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>Reach me`</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css" integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ" crossorigin="anonymous">
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="index.html" title="About ME">Home</a>
</li>
<li>
<a href="resume.html" title="RESUME!">Resume!</a>
</li>
<li>
<a href="blog.html" title="My Blog">BLOG</a>
</li>
<li>
<a href="gallery.html" title="Gallery">Gallery</a>
</li>
<li>
<a href="contact.html" title="Contact">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="gallery">
<h1>Gallery <i class="fas fa-images"></i></h1>
<figure>
<img src="img/img3.jpg" alt="salman">
</figure>
<figure>
<img src="img/img1.jpg" alt="img1">
</figure>
<figure>
<img src="img/img2.jpg" alt="img2">
</figure>
<figure>
<img src="img/img4.jpg" alt="img2">
</figure>
<figure>
<img src="img/img5.jpg" alt="img2">
</figure>
<figure>
<img src="img/img6.jpg" alt="img2">
</figure>
</div>
</main>
<footer>
<div>
© All rights reserved - Mohd Salman Ansari
</div>
</footer>
</body>
</html>