-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrent.html
56 lines (55 loc) · 1.69 KB
/
rent.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BNN Cars</title>
<link rel="stylesheet" href="styles/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<header>
<div class="banner_container">
<div class="company_name">
<span> BNN Cars</span><br />
<span class="span2">cars for everybody</span>
</div>
</div>
<div class="menu_container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="rent.html">Rent</a></li>
<li><a href="models.html">Models</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="main_container">
<!-- Main content of the page will be here -->
</div>
</main>
<footer>
<div id="footer">
<a href="https://www.facebook.com" target="_blank" alt="facebook"
><i class="fa fa-facebook fa-2x"></i
></a>
<a href="https://www.twitter.com" target="_blank" alt="twitter"
><i class="fa fa-twitter fa-2x"></i
></a>
<a href="mailto:[email protected]" target="_blank" alt="mail"
><i class="fa fa-google fa-2x"></i
></a>
<a href="https://www.youtube.com" target="_blank" alt="youtube"
><i class="fa fa-youtube fa-2x"></i
></a>
</div>
</footer>
</body>
</html>