-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
107 lines (106 loc) · 4.71 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
<!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>Vehicle Gallery</title>
<meta name="description" content="photos of Vehicles that we have">
<link rel="canonical" href="rentit.com/gallery.html">
<link rel="stylesheet" href="gallery.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
</style>
</head>
<body>
<nav>
<span><img src="icons/rent it.png" alt="rent it logo"></span>
<ul id="navv">
<a href="index.html">Home</a>
<a href="gallery.html">Gallery</a>
<a href="reservation.html">Reservation</a>
<a href="contact.html">Contact us</a>
</ul>
<div id="close" onclick="closee()">X</div>
<div class="burger" id="open" onclick="openn(id)">
<div></div>
<div></div>
<div></div>
</div>
</nav>
<div id="photos-container">
<h1>Gallery</h1>
<div class="card">
<img src="/cars/home photos/berline.jpg" alt="berline car">
<p>AutoRentals is ranked number one by Smartertravel as The best car rental booking site in 2020 and provides excellent pricing on a wide range of vehicles. </p>
</div>
<div class="card">
<img src="/cars/home photos/moto.jpg" alt="motorcyle">
<p>AutoRentals is ranked number one by Smartertravel as The best car rental booking site in 2020 and provides excellent pricing on a wide range of vehicles. </p>
</div>
<div class="card">
<img src="/cars/home photos/julio nery.jpg" alt="motorcyle">
<p>AutoRentals is ranked number one by Smartertravel as The best car rental booking site in 2020 and provides excellent pricing on a wide range of vehicles. </p>
</div>
<div class="card">
<img src="/cars/home photos/julio nery.jpg" alt="julio nery">
<p>AutoRentals is ranked number one by Smartertravel as The best car rental booking site in 2020 and provides excellent pricing on a wide range of vehicles. </p>
</div>
<div class="card">
<img src="/cars/home photos/kango.jpg" alt="kangoo uv">
<p>AutoRentals is ranked number one by Smartertravel as The best car rental booking site in 2020 and provides excellent pricing on a wide range of vehicles. </p>
</div>
<div class="card">
<img src="/cars/home photos/engine chantier.jpg" alt="Utility vehicle">
<p>AutoRentals is ranked number one by Smartertravel as The best car rental booking site in 2020 and provides excellent pricing on a wide range of vehicles. </p>
</div>
<div class="card">
<img src="/cars/home photos/truck.jpg" alt="truck">
<p>AutoRentals is ranked number one by Smartertravel as The best car rental booking site in 2020 and provides excellent pricing on a wide range of vehicles. </p>
</div>
</div>
<footer>
<div id="footer">
<div class="first">
<ul id="links">
<a href="index.html">Home</a>
<a href="gallery.html">Gallery</a>
<a href="reservation.html">Reservation</a>
<a href="contact.html">Contact us</a>
</ul>
</div>
<div id="footer-content">
<p>[email protected]</p>
<p>+212620814793209283</p>
<p>boulevard Zerktoni 1293 Safi Morocco</p>
<p>View on map</p>
</div>
<div id="icons">
<img src="icons/instagram.svg">
<img src="icons/twitter.svg">
<img src="icons/facebook.svg">
<img src="icons/linkedin.svg">
</div>
</div>
<div id="copyright">
<p> © 2021 Trustpilot, Inc. All rights reserved. </p>
</div>
</footer>
<script>
var close = document.querySelector("#close")
var open = document.querySelector("#open")
var navv = document.querySelector("#navv")
function openn(e){
navv.style.display = "flex"
open.style.display = "none"
close.style.display = "inline"
}
function closee(){
navv.style.display = "none"
open.style.display = "inline"
close.style.display = "none"
}
</script>
</body>
</html>