-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
41 lines (38 loc) · 1.3 KB
/
gallery.html
File metadata and controls
41 lines (38 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>GDSC UMIT</title>
<link rel="icon" href="https://img.icons8.com/office/16/000000/google-logo.png" />
<link rel="stylesheet" href="gallery.css">
<meta charset="UTF-8">
<meta name="description" content="GDSC HTML CSS SESSION">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="GDSC">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<nav class="navbar">
<a href="Home.html">Home</a>
<a href="achievements.html">Achievements</a>
<a href="gallery.html">Gallery</a>
</nav>
<div class='en-div'>
<div class="gallery-card">
<img src='./Media/sp1.jpg' class='gallery-img' />
<p>Greentech Festival 2020</p>
</div>
<div class="gallery-card">
<img src='./Media/sp2.jpg' class='gallery-img' />
<p>Google I/O Developer Conference</p>
</div>
<div class="gallery-card">
<img src='./Media/sp1.jpg' class='gallery-img' />
<p>Greentech Festival 2020</p>
</div>
<div class="gallery-card">
<img src='./Media/sp2.jpg' class='gallery-img' />
<p>Google I/O Developer Conference</p>
</div>
</div>
</body>
</html>