-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
141 lines (134 loc) · 4.45 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!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" />
<meta name="description" content="My Best Photos" />
<meta name="keywords" content="photography,photos,Masonry grid," />
<meta name="author" content="Piotr Maliga" />
<title>Gallery Page</title>
<link rel="stylesheet" href="gallery.css" />
<link rel="icon" type="image/png" href="img/icons/camera.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Style+Script&display=swap" rel="stylesheet" />
</head>
<body>
<header class="header">
<div class="navbar-area">
<div class="container">
<nav class="site-navbar">
<!-- site logo -->
<div class="logo-image">
<img class="logo" src="Logo.png" />
</div>
<!-- site menu/nav -->
<ul>
<li><a href="landingpage.html">home</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="Sponsors.html">Sponsors</a></li>
<li><a href="Teams.html">Team</a></li>
</ul>
<!-- nav-toggler for mobile version only -->
<button class="nav-toggler">
<span></span>
</button>
</nav>
</div>
</div><!-- navbar-area end -->
</header>
<div class="himg">
<!-- <img class="header_title" src="./gallery_font.png"> -->
<svg viewBox="0 0 1920 150">
<symbol id="s-text">
<text text-anchor="middle" x="52%" y="60%">GALLERY </text>
<text text-anchor="middle" x="52%" y="60%">GALLERY </text>
</symbol>
<g class = "g-ants">
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
</g>
</svg>
</div>
<main>
<section class="section">
<ul class="section__gallery">
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/20210924_055608.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/20210924_055752.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/20210924_055757.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/20210924_055814.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/20210924_060001.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/20210924_060040.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/20210924_062424.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/codethrill copy.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/Entropy insta post (2).png"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/techhunt copy.jpg"
/>
</li>
<li class="section__gallery-item">
<img class="section__gallery-image"
src="./img/images/techmaster copy.png"
/>
</li>
</ul>
</section>
</main>
<footer class="footer">
<div class="banner-image">
<img src="Banner.png" alt="" class="banner">
</div>
<ul>
<li>
<a class="footer_list" href="https://www.iiitg.ac.in/contact.php">Contact Us</a>
</li>
<li>
<a class="footer_list" href="Teams.html">About Us</a>
</li>
</ul>
</footer>
<!-- script tag for navbar -->
<script src="navbar.js"></script>
</body>
</html>