-
Notifications
You must be signed in to change notification settings - Fork 4
/
gallery.html
96 lines (89 loc) · 4.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Gallery</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="hamburger">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<ul class="nav-menu">
<li><a href="index.html">About</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="gallery.html" class="active">Gallery</a></li>
</ul>
</nav>
<!-- Main Content -->
<main>
<div class="container">
<!-- Left Side -->
<div class="left-column">
<img src="images/image.png" alt="Your Name" class="profile-pic">
<h2>Your Name</h2>
<p>PhD Scholar @ University</p>
<div class="social-links">
<a href="https://scholar.google.com" target="_blank">
<img src="images/google-scholar.svg" alt="Google Scholar" class="social-icon">
</a>
<a href="https://www.linkedin.com" target="_blank">
<img src="images/linkedin.svg" alt="LinkedIn" class="social-icon">
</a>
<a href="https://mail.google.com/mail" target="_blank">
<img src="images/email.svg" alt="Email" class="social-icon">
</a>
</div>
</div>
<!-- Right Side - Gallery -->
<div class="right-column gallery-content">
<h2>Gallery</h2>
<div class="gallery-container">
<div class="gallery-item">
<img src="images/project1.png" alt="Gallery Image 1" class="gallery-pic" onclick="openLightbox(this)">
<div class="caption">Caption for Image 1</div>
</div>
<div class="gallery-item">
<img src="images/project1.png" alt="Gallery Image 2" class="gallery-pic" onclick="openLightbox(this)">
<div class="caption">Caption for Image 2</div>
</div>
</div>
<div class="gallery-container">
<div class="gallery-item">
<img src="images/project1.png" alt="Gallery Image 3" class="gallery-pic" onclick="openLightbox(this)">
<div class="caption">Caption for Image 3</div>
</div>
<div class="gallery-item">
<img src="images/project1.png" alt="Gallery Image 4" class="gallery-pic" onclick="openLightbox(this)">
<div class="caption">Caption for Image 4</div>
</div>
</div>
<!-- Add more gallery items as needed -->
</div>
</div>
</main>
<!-- Lightbox HTML -->
<div id="lightbox" class="lightbox">
<span class="close" onclick="closeLightbox()">×</span>
<img class="lightbox-content" id="lightbox-img" alt="Enlarged Image">
<p id="lightbox-caption" class="caption"></p>
</div>
<!-- Footer -->
<footer>
<p>© 2024 Your Name, a fork of
<a href="https://github.com/muhammedrashidx/ScholarSite" target="_blank" style="text-decoration: none; color: #b8aaaa; text-decoration: underline;">
ScholarSite
</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>