-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathautomobiles.html
More file actions
102 lines (98 loc) · 4.59 KB
/
automobiles.html
File metadata and controls
102 lines (98 loc) · 4.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Automobiles</title>
<link rel="stylesheet" href="./CSS/dashboard.css">
<link rel="stylesheet" href="./CSS/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav id="slide-menu">
<div class="wrap">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="clothing.html">Clothing</a></li>
<li><a href="footwear.html">Footwear</a></li>
<li><a href="bags.html">Bags</a> </li>
<li><a href="skincare.html">Skin Care</a> </li>
<li><a href="apps.html">Apps</a> </li>
<li><a href="gadgets.html">Gadgets</a> </li>
<li><a href="automobiles.html" class="current">Automobiles</a> </li>
<li><a href="food.html">Food & Beverages</a> </li>
<li><a href="aircon.html">Air Conditioners</a> </li>
<li><a href="kitchenware.html" >Kitchenware</a> </li>
</ul>
</div>
</nav>
<!-- Content panel -->
<div id="content">
<div class="menu-trigger"></div>
<div class="category auto">
<img src="./img/underline1.png" alt="">
<h1 class="category-heading automobiles">Automobiles</h1>
</div>
<div class="container">
<div class="list">
<div class="list-items">
<a href="https://www.tatamotors.com/"><img src="./img/logo_tata-motors.png" alt=""></a>
<div>
<h3>Tata Motors</h3>
<p>Tata Motors Limited,formerly Tata Engineering and Locomotive Company (TELCO),is an Indian multinational automotive manufacturing company. </p>
</div></div>
<div class="list-items">
<a href="https://www.heromotocorp.com/en-in/"><img src="./img/Hero-MotoCorp-Photo.jpg" alt=""></a>
<div>
<h3>Hero Motocorp</h3>
<p>Hero Motocorp Ltd.,formerly Hero Honda,is an Indian motorcycle and scooter manufacturer based in New Delhi,India. </p>
</div></div>
<div class="list-items">
<a href="https://www.tvsmotor.com/"><img src="./img/TVS-motors-logo.jpg" alt=""></a>
<div>
<h3>TVS Motor Company</h3>
<p>TVS Motor Company (T.V.S) is an Indian multinational motorcycle company headquartered at Chennai,India. </p>
</div>
</div>
<div class="list-items">
<img src="./img/bajaj-motors.jpg" alt="">
<div>
<h3>Bajaj Auto</h3>
<p>Bajaj Auto Limited is an Indian global two-wheeler company and three-wheeler manufacturing company based in Pune,Maharashtra. </p>
</div>
</div>
<div class="list-items">
<img src="./img/mahindra-logo.jpg" alt="">
<div>
<h3>Mahindra & Mahindra</h3>
<p>While the novel Coronavirus has shaken everyone,technology has shown us hope. Mahindra is using technology to give the pandemic a tough fight. </p>
</div>
</div>
<div class="list-items">
<img src="./img/Force-Motors-logo.png" alt="">
<div>
<h3>Force Motors</h3>
<p> Force Motors Limited, is an Indian automotive manufacturer, the flagship company of the Dr. Abhay Firodia Group.</p>
</div>
</div>
</div>
</div>
</div>
<script src="./JS/dashboard.js"></script>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5fb78668a1d54c18d8eb8ff2/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body>
</html>