-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
104 lines (78 loc) · 3.39 KB
/
gallery.html
File metadata and controls
104 lines (78 loc) · 3.39 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<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>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="resources/css/Style.css">
</head>
<body>
<div class="navbar">
<nav>
<!--<img src="resources/images/my pic.png" alt="">-->
<H1 class="logo">I<span>S</span>K</H1>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="gallery.html">PICTURE GALLERY</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="quotation.html">FAVORITE QUOTIENT</a></li>
<li><a href="contact.html">CONTACT ME</a></li>
</ul>
</nav>
<section class="gallery-grid" id="quotes-grid">
<div class="img">
<img src="resources/images/6.jpeg" alt="" width="100%" height="100%">
<div class="gallery-text" >
In University
</div>
</div>
<div class="img">
<img src="resources/images/4.jpeg" alt="" width="100%" height="100%">
<div class="gallery-text" >
In University
</div>
</div>
<div class="img">
<img src="resources/images/2.jpeg" alt="" width="100%" height="100%">
<div class="gallery-text" >
Shimla Hills
</div>
</div>
<div class="img">
<img src="resources/images/1.jpeg" alt="" width="100%" height="100%">
<div class="gallery-text" >
In University
</div>
</div>
<div class="img">
<img src="resources/images/3.jpeg" alt="" width="100%" height="100%">
<div class="gallery-text" >
In University
</div>
</div>
<div class="img">
<img src="resources/images/5.jpeg" alt="" width="100%" height="100%">
<div class="gallery-text" >
In College
</div>
</div>
</section>
<footer>
<div id="footer" class="footer-content">
<h3>I<span>S</span>K</h3>
<p>Created by Muhammad Ismail<br>Follow me on social media!</p>
<ul class="socials">
<li><a href="#" TARGET="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IskProfessional" TARGET="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/muhammad-ismail-262924195/" TARGET="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
<div class="footer-bottom">
<p>copyright ©2021 ISK. designed by <span>Muhammad Ismail </span></p>
</div>
</footer>
</div>
</body>
</html>