-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject3.html
More file actions
61 lines (53 loc) · 2.04 KB
/
project3.html
File metadata and controls
61 lines (53 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<!--head-->
<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>Car Website </title>
<!-- css file link -->
<link rel="stylesheet" href="style.css">
</head>
<!--body-->
<body>
<div class="details">
<nav class="nav">
<ul>
<li>
<a href="project.html">Home</a>
</li>
<li>
<a href="project2.html">Contact Us</a>
</li>
<li>
<a href="project3.html">Products</a>
</li>
</ul>
</nav>
<!--section info-->
<section class="model">
<img src="images/interior.jpg" alt="">
<div>
<h2>All Models</h2>
<p>The Toyota brand is one of the biggest automakers in the world. In India it has a JV as Toyota Kirloskar Motor Pvt Ltd.
The Indian partner Kirloskar has a minor stake in this JV.
The Japanese maker entered India in October 1997 and it launched its first product the Qualis, which was a runaway success for the company.</p>
<a href="https://www.toyotabharat.com" class="link">Learn More</a>
</div>
</section>
<section class="holder">
<img src="images/camry.jpg" alt="" width="500 " height="250">
<img src="images/fortuner.jpg" alt="" width="500 " height="250" >
<img src="images/crysta.jpg" alt="" width="500 " height="250">
<img src="images/Glanza.jpg" alt="" width="500 " height="250">
<img src="images/urban.jpg" alt=""width="500 " height="250">
<img src="images/vellfire.jpg" alt=""width="500 " height="250">
</section>
<!--footer-->
<footer>
<p>© 2021 Abishek James. All Rights Reserved.</p>
</footer>
</div>
</body>
</html>