-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
77 lines (68 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Poppins:wght@400&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="icons/favicon.png">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<title>My Gallery</title>
</head>
<body>
<header>
<!-- Header and Navigation Section -->
<div class="site-Stitle pm">
<div class = "logo"><a href="index.html" >
<img src="images/logo.png" alt="Logo Description"></a>
</div>
</div>
<nav>
<button class="mobile">
<span class="material-symbols-outlined">
menu
</span>
</button>
<ul>
<li class="pm"><a href="index.html#projects">Projects</a></li>
<li class="pm"><a href="index.html#about">About</a></li>
<li class="pm"><a href="#gallery">Gallery</a></li>
<li class="pm"><a href="index.html#skills">Skills</a></li>
<li class="pm"><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Gallery Section -->
<main>
<section class="gallery" id="gallery">
<div class="max-width">
<h2 class="title">Gallery</h2>
<div class="gallery-content">
<div class ="imageContainer">
<div class="item1"> Porvoo, Finland</div>
<div class="item2"> Colosseum, Rome Italy</div>
<div class="item3"> Effiel Tower, Paris France</div>
<div class="item4"> My Home Town, Besishahar Nepal</div>
</div>
<h6>© All photographs are original creations by the author.</h6>
</div>
<h3 class="imageCaption"> “Don’t shoot what it looks like. Shoot what it feels like.” — David Alan Harvey</h3>
</div>
</section>
<!--Social icons section-->
<section class="socials-icons">
<a href="https://www.facebook.com/iCatalystkancho" target="_blank"><img src="icons/facebook.svg" alt="Facebook"></a>
<a href="https://twitter.com/icatalystkancho" target="_blank"><img src="icons/twitter.svg" alt="Twitter"></a>
<a href="https://www.linkedin.com/in/bishnu-suyel" target="_blank"><img src="icons/linkedin.svg" alt="LinkedIn"></a>
<a href="https://github.com/Bis10" target="_blank"><img src="icons/github.svg" alt="GitHub"></a>
</section>
</main>
<!-- Footer Section -->
<footer>
<span>Copyright © Created By Bishnu </span> 2024 All rights reserved.
</footer>
<script src="script.js"></script>
</body>
</html>