-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
74 lines (74 loc) · 3.39 KB
/
gallery.html
File metadata and controls
74 lines (74 loc) · 3.39 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
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
<!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">
<title>Radheights</title>
<script src="JAVASCRIPT/gallery.js" defer></script>
<link rel="stylesheet" href="CSS/gallery.css">
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@600&family=Roboto:wght@300;400&display=swap"
rel="stylesheet">
</head>
<body>
<header class="">
<nav class="navbar">
<div class="logo">
<a href="#"> Radheights </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="gallery.html"> Portfolio </a></li>
</ul>
</div>
</nav>
</header>
<section>
<div class="gallery-container">
<h2 class="text-centre main-title">Lorem, ipsum.</h2>
<div class="gallery-grid">
<div class="icons">
<a href="Awards.html"><img src= "PICTURES/awards/1.jpg" class="gallery-element" alt= "club filler"></a>
<h3 class="text-centre sub">Lorem, ipsum.</h3>
<figcaption class="text-centre">Deep sand carved, three dimensional images in thick jade or crystal clear </figcaption>
</div>
<div class="icons">
<a href="Overlay.html"><img src= "PICTURES/overlay/1.jpg" class="gallery-element" alt= "club filler"></a>
<h3 class="text-centre sub">Lorem, ipsum.</h3>
<div class="text-centre"> Lorem ipsum dolor sit. </div> <br>
</div>
<div class="icons">
<a href="countertops.html"><img src= "PICTURES/countertops/6.jpg" class="gallery-element" alt= "club filler"></a>
<h3 class="text-centre sub">Lorem, ipsum.</h3>
<div class="text-centre"> Lorem ipsum dolor sit.</div>
</div>
<div class="icons">
<a href="Canuckshuck.html"><img src= "PICTURES/canuckshuk/1.jpg" class="gallery-element" alt= "club filler"></a>
<h3 class="text-centre sub">Lorem, ipsum.</h3>
<div class="text-centre"> Lorem ipsum dolor sit. </div>
</div>
<div class="icons">
<a href="icedoors.html"><img src= "PICTURES/icedoors/1.jpg" class="gallery-element" alt= "club filler"></a>
<h3 class="text-centre sub">Lorem, ipsum.</h3>
<div class="text-centre"> Lorem ipsum dolor sit.</div>
</div>
<div class="icons">
<a href="partitions.html"><img src= "PICTURES/partitions/1.jpg" class="gallery-element" alt= "club filler"></a>
<h3 class="text-centre sub">Lorem, ipsum.</h3>
<div class="text-centre"> Lorem ipsum dolor sit.</div>
</div>
</div>
</div>
</section>
<footer class="bg-crystal">
<p>artistree@glassartistreeoffortlangley.com</p>
</footer>
</body>
</html>