-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gallery.html
49 lines (46 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<meta name="viewport" content="width=600px, initial-scale=1">
<link rel="stylesheet" href="css/gallerystyle.css">
<script src="jquery-3.6.0.min.js"></script>
<link href="fotorama-4.6.4/fotorama.css" rel="stylesheet">
<script src="fotorama-4.6.4/fotorama.js"></script>
</head>
<body>
<header>
<h1 id="title">VehicleDealings</h1>
<img src=images/vintage-car-png.png id="car">
</header>
<nav>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<button class="nav">Show/Hide Menu</button>
</nav>
<div class="fotorama"
data-allowfullscreen="true"
data-loop="true"
data-keyboard="true"
data-nav="thumbs"
data-width="100%"
data-height="100%">
<img src=images/verge_motorcycles_blog.jpg id="verge_motor">
<img src=images/LandRover.jpg id="land">
<img src=images/Convertible.jpg id="convert">
<img src=images/ElectricCar.png id="elec">
<img src=images/bugatti.jpg id="bugatti">
<img src=images/MotorScoter.png id="motor">
<img src=images/sports-car.jpg id="sport">
<img src=images/MountainBike.png id="mountbike">
</div>
<footer>
<p>© Copyright 2022 - VehicleDealings</p>
</footer>
<script src="JavaScript.js"></script>
</body>
</html>