-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
120 lines (106 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv=X-UA-Compatible content=IE=edge>
<meta name="viewport" />
<title>Vitruvian Official</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"/>
<link rel="stylesheet" href="style/style.css" />
<style>
.footer-content { margin: 11px; }
.container { display: flex; align-items: center; justify-content: center; padding: 50px 8%; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-gap: 30px; }
.gallery img { width: 100%; border: 1px solid silver; box-shadow: 0 0 10px silver; z-index: 1 ;}
/* For phones */
@media (max-width: 767px) {
@media all and (max-height: 750px) {
.gallery img {
height: 100px;
width: auto;
}
}
}
</style>
</head>
<body>
<nav class="navbar"">
<div class="navbar-div">
<a class="band-name" href="index.html">Vitruvian</a>
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="lyrics.html">Lyrics</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="gallery">
<img src="img/SSSS-02.jpg" alt="no" height="650px">
<img src="img/Devenir-thumb.jpg" alt="">
<img src="img/IMG_0207.png" alt="">
</div>
</div>
<footer class="footer-contact">
<div class="footer-content">
<div class="footer-section">
<h2 class="footer-h2">About Us</h2>
<p class="footer-p">
Vitruvian is a Black Metal band from a forgotton land.
</p>
<a
class="march"
href="https://www.metal-archives.com/bands/Vitruvian/3540515458"
target="_blank"
>Metal Archives</a
>
</div>
<div class="footer-section">
<h2 class="footer-h2">Contact</h2>
<p class="footer-p" style="color: bisque;">
<i class="bi bi-envelope-at-fill"></i>: [email protected]
</p>
</div>
<div class="footer-section">
<h2 class="footer-h2">Follow Us</h2>
<div class="social-icons">
<a
style="color: rgb(239, 3, 137);"
href="https://instagram.com/vitruvian_band?igshid=MzRlODBiNWFlZA=="
target="_blank"
><i class="bi bi-instagram"></i
></a>
<a
style="color: #22aeff;"
href="https://t.me/vitruvian_band"
target="_blank"
><i class="bi bi-telegram"></i
></a>
<a
style="color: #0F0;"
href="https://open.spotify.com/album/3dtZVRPFmlreB5RYI891Ga?si=CcVzKE9ZRQywTBqLdNz7vA&utm_source=copy-link"
target="_blank"
><i class="bi bi-spotify"></i
></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p class="footer-p">
© 2023 Vitruvian, Designed by Woland under GNU License
</p>
</div>
</footer>
<script src="script/script.js"></script>
</body>
</html>