-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcars.html
218 lines (164 loc) · 5.83 KB
/
cars.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<html>
<head>
<title>
Cars
</title>
<style>
h1 {
font-family: 'Trebuchet MS', sans-serif;
}
h1 {text-align: center;}
div.b {
text-align: left;
}
h2 {
font-family: 'Trebuchet MS', sans-serif;
}
body
{
background-image: url('tesla.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button1 {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.center
{
margin: 0;
position: absolute;
top: 90%;
left: 52%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.right
{
margin: 0;
position: absolute;
top: 90%;
left:72%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.left
{
margin: 0;
position: absolute;
top: 90%;
left:32%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.top
{
margin: 0;
position: absolute;
top: 10%;
left:92%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
div {
#left {
float: left;
}
.bottom1 {
margin: 0;
position: absolute;
top: 96%;
left:32%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.bottom2 {
margin: 0;
position: absolute;
top: 96%;
left:22%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.bottom3 {
margin: 0;
position: absolute;
top: 96%;
left:12%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<h2 style="color:rgb(252, 249, 249);">TESLA </h2>
<h1 style="color:rgb(7, 1, 1);">.</h1>
<h1 style="color:rgb(255, 255, 255);">MODEL S</h1>
<div class="b">
<h2 style="color:rgb(252, 249, 249);">BOOKINGS</h2>
<p style="color:rgb(157, 255, 0);">
. Name: <input type = "text" name = "name" size = "12" >
</p>
<p style="color:rgb(157, 255, 0);">
Pin Code:<input type = "text" name = "name" size = "12" >
<p style="color:rgb(0, 255, 85);">
Colour <input type = "checkbox" name ="Red"/> Red
<input type = "checkbox" name ="White"/> White
<input type = "checkbox" name ="Midnight Silver Metallic"/> Midnight Silver Metallic
</p>
<p style="color:rgb(157, 255, 0);">Varient
<select name = "Semester">
<option> Single Motor RWD </option>
<option> Dual Motor AWD </option>
<option> Tri Motor AWD </option>
</select>
</p>
<p style="color:rgb(0, 255, 13);">Autopilot to be included??
<input type = "checkbox" name ="Red"/> Yes
</p>
<p style="color:rgb(0, 255, 13);">For More Information Visit our following handling
</div>
<div class="center">
<button class="button">Book now!</button>
</div>
<div class="right">
<button class="button1">Download Brochure</button>
</div>
<div class="left">
<button class="button1">Test Drive Now</button>
</div>
<div class="top">
<button class="button1">Worlds Most Favourite Electric Car Now in INDIA !!!</button>
</div>
<div class="bottom1">
<a href="https://www.facebook.com/TeslaIndiaMotors/"><img src="facebook.png" alt="Facebook" style="width:42px;height:42px;"></a>
</div>
<div class="bottom2">
<a href="https://instagram.com/teslamotors?utm_medium=copy_link"><img src="instagram.png" alt="Instagram" style="width:42px;height:42px;"></a>
</div>
<div class="bottom3">
<a href="https://youtube.com/tesla"><img src="youtube.png" alt="YouTube" style="width:42px;height:42px;"></a>
</div>
</body>
</html>