-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
83 lines (68 loc) · 3.49 KB
/
home.html
File metadata and controls
83 lines (68 loc) · 3.49 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
<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>CarFacts</title>
<link rel="stylesheet" href="assets/css/home.css">
<link href="https://fonts.googleapis.com/css?family=Great+vibes" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://www.google.com/search?q=icons+font+awesome&oq=icons&aqs=chrome.4.69i57j0i512l2j46i175i199i512j0i512j69i60j69i61l2.5590j0j7&sourceid=chrome&ie=UTF-8">
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<section class="navbar">
<h1>CarFacts</h1>
<div class="nav">
<a href="home.html">HOME</a></li>
<a href="vehicles.html">VEHICLES</a></li>
<a href="#footer">CONTACT US</a></li>
</div>
</section>
<!--nav section ends here-->
<!--imager section begins here -->
<div class="container">
<div class="row">
<div class="banner">
<h2 class="heading">Get your facts here!</h2>
<p>CarFacts is here to make you understand more about cars.Several car brands are
described.</p><br>
<p>Automobiles are quite the wonder. For thousands of years, people relied on horses or their own two feet for traveling. As the old English proverb says, “necessity is the mother of invention”, and there was definitely a necessity for other means of travel for going further and faster.
Did you know that, when vehicles were first introduced in 1886, few families could afford them and ownership was considered a luxury? Today, there are 1.4 billion cars—that’s about one car for every seven people!
Fasten your seatbelts and check out more interesting car facts. Save these fun facts for your next trivia night or your next road trip and have some fun as you cruise down the highway.</p>
</div>
</div>
</div>
<!--imager section ends here-->
<!--about us section begins here-->
<div class="about-Us">
<div class="image">
<img src="./assets/images/crown.jpg" height="300px" width="450px" alt="aboutus">
</div>
<div class="more">
<h2>More About Cars <span style="color:burlywood;"></span></h2>
<p></p>A car is a wheeled motor vehicle used for transportation. Most definitions of cars say that they run primarily on roads, seat one to eight people, have four wheels, and mainly transport people rather than goods. Cars came into global use during the 20th century, and developed economies depend on them. <br> <br></p>
<button> <a href="./vehicles.html" target="_self">More on sample cars and their origin </a></button>
</div>
</div>
<!--about us section ends here-->
<!--footer section begins here-->
<section class="footer" id="footer">
<h3>Contact <span>CarFacts</span> at :</h3>
<hr>
<div class="iconfooter">
<i class='bx bxl-facebook'></i>
<i class='bx bxl-twitter'></i>
<i class='bx bxl-instagram' ></i>
</div>
<ul>
<li>Terms & Conditions</li>
<li>|</li>
<li>Privacy Policy</li>
<li>|</li>
<li>Credits</li>
</ul>
<h4>@2022, CarFacts. All Rights Served.</h4>
</section>
<!--footer section ends here-->
</body>
</html>