-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
115 lines (97 loc) · 3.92 KB
/
home.html
File metadata and controls
115 lines (97 loc) · 3.92 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
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
<!DOCTYPE html>
<html>
<head>
<title> Renzo Home </title>
<meta charset="UTF-8" />
<link href="https://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
</head>
<body background="bk.jpg">
<div class="navbar">
<a class="active" href="home.html" style ="float:left"><i class="fa fa-fw fa-home"></i> Renzo's</a>
<a href="contact.html"><i class="fa fa-fw fa-envelope"></i> Contact Us</a>
<a href="about.html"><i class="fa fa-fw fa-user"></i> About Us</a>
<div class="dropdown">
<button class="dropbtn">Vehicles
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="Rav4.html" style="color: black">Toyota Rav4</a>
<a href="Camry.html" style="color: black">Toyota Camry</a>
<a href="Corolla.html" style="color: black">Toyota Corolla</a>
<a href="Noah.html" style="color: black">Toyota Noah</a>
</div>
</div>
<a href="gallery.html"><i class="fa fa-fw fa-search"></i> Gallery</a>
</div>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<img src="images/Gallery/2.jpg" alt="img2" style="width:100%">
</div>
<div class="mySlides fade">
<img src="images/Gallery/3.png" alt="img3" style="width:100%">
</div>
<div class="mySlides fade">
<img src="images/Gallery/1.jpg" alt="img1" style="width:100%">
</div>
</div>
<div style="padding-left:16px">
</div>
<br>
<div class="col-12" style=" background: white">
<div class="container">
<!-- Heading of paragraph-->
<h3 style="text-align:center; color:black">Renzo's LTD.</br></br>
<h3 style="text-align:center; color:black">
Our goal is to support and achieve our vision, through the cultivation of right behaviour, right action and fair practices.</br><br>
People Development | Good Corporate Citizenship | Service Excellence | Effective Communication | Superior Customer Relations
</h3>
</div>
</div>
<div class="container">
<h4 style="align-content: center">Top Seller<br>
<h4> Best Selling Car</h4>
</h4>
<img scr="Toyota Camry red.jpg">
</div>
<!--Social Media Links-->
<div>
<footer>
<a style="float:right; margin-right: 20px" href="https://twitter.com/ToyotaJamaica" class="fa fa-twitter"></a>
<a style="float:right ; margin-right: 25px" href="https://www.instagram.com/toyotajamaicaltd/?hl=en" class="fa fa-instagram"></a>
<a style="float:right; margin-right: 30px" href="https://www.facebook.com/ToyotaJamaica/" class="fa fa-facebook"></a>
<p>Privacy Policy ©2019 RENZO'S CORPORATION. ALL RIGHTS RESERVED</p>
</footer>
</div>
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
slides[slideIndex-1].style.display = "block";
setTimeout(showSlides, 5000); // Change image every 5 seconds
}
</script>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>