-
Notifications
You must be signed in to change notification settings - Fork 0
/
toyota.html
131 lines (125 loc) · 5.39 KB
/
toyota.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<html>
<head>
<link rel="stylesheet" href="carmakers.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide">
</head>
<body>
<div class="struct">
<div class="nav">
<table>
<tr>
<td><a href="home.html" class="logo">Autocare</a></td>
<td><a class="active" href="home.html">Home</a></td>
<td><a href="#news">News</a></td>
<td><a href="#contact">Contact</a></td>
<td><a href="#about">About</a></td>
<td>
<div class="search">
<input type="search" placeholder="Search here..."><button type="button" value="sear"><img src="search.png"></button>
</div>
</td>
<td>
<a href="#signup">Sign in</a>
</td>
<td>
<button type="button" value="cart"><img src="cart.png"></button>
</td>
<td>
<span style="font-size:25px;cursor:pointer;" onclick="openNav()">☰</span>
</td>
</tr>
</table>
</div>
<br>
<br>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Clients</a>
<a href="#">Contact</a>
</div>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
<h1>
<span class="light">TOYOTA PARTS AND</span><span class="dark"> ACCESSORIES</span>
</h1>
<table cellspacing="20" class="sbut">
<tr>
<td>
<button type="button" action="C:\Users\ASUS\Desktop\madhav\Page2.html"><img src="car.png"><br><h2>Maintainance Service Parts</h2></button>
</td>
<td>
<button type="button"><img src="air.png"><br><h2>Air Conditioning</h2></button>
</td>
<td>
<button type="button"><img src="chain.png"><h2>Belts Chains and Rollers</h2></button>
</td>
<td>
<button type="button"><img src="bearing.png"><h2>Bearings</h2></button>
</td>
<td>
<button type="button"><img src="chassis.png"><h2>Body</h2></button>
</td>
</tr>
<tr>
<td>
<button type="button" action="C:\Users\ASUS\Desktop\madhav\Page2.html"><img src="car.png"><br><h2>Maintainance Service Parts</h2></button>
</td>
<td>
<button type="button"><img src="air.png"><br><h2>Air Conditioning</h2></button>
</td>
<td>
<button type="button"><img src="chain.png"><h2>Belts Chains and Rollers</h2></button>
</td>
<td>
<button type="button"><img src="bearing.png"><h2>Bearings</h2></button>
</td>
<td>
<button type="button"><img src="chassis.png"><h2>Body</h2></button>
</td>
</tr>
<tr>
<td>
<button type="button" action="C:\Users\ASUS\Desktop\madhav\Page2.html"><img src="car.png"><br><h2>Maintainance Service Parts</h2></button>
</td>
<td>
<button type="button"><img src="air.png"><br><h2>Air Conditioning</h2></button>
</td>
<td>
<button type="button"><img src="chain.png"><h2>Belts Chains and Rollers</h2></button>
</td>
<td>
<button type="button"><img src="bearing.png"><h2>Bearings</h2></button>
</td>
<td>
<button type="button"><img src="chassis.png"><h2>Body</h2></button>
</td>
</tr>
<tr>
<td>
<button type="button" action="C:\Users\ASUS\Desktop\madhav\Page2.html"><img src="car.png"><br><h2>Maintainance Service Parts</h2></button>
</td>
<td>
<button type="button"><img src="air.png"><br><h2>Air Conditioning</h2></button>
</td>
<td>
<button type="button"><img src="chain.png"><h2>Belts Chains and Rollers</h2></button>
</td>
<td>
<button type="button"><img src="bearing.png"><h2>Bearings</h2></button>
</td>
<td>
<button type="button"><img src="chassis.png"><h2>Body</h2></button>
</td>
</tr>
</table>
</div>
</body>
</html>