-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<!-- left div -->
<div class="left">
<img src="./assets/Logo.webp" alt="">
</div>
<!-- mid div -->
<div class="mid">
<ul class="navbar">
<li><a href="#" class="active">Home </a></li>
<li><a href="#">KaizenEV</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">Newsroom</a></li>
</ul>
</div>
<!-- right div -->
<div class="right">
<button class="btn">Call Us</button>
<button class="btn">Email Us</button>
</div>
</header>
<div class="container">
<h1>Pre-book Kaizen Aavinya Now</h1>
<form action="noaction.php">
<div class="form_group">
<input type="text" name="" placeholder="Enter your name">
<input type="text" name="" placeholder="Enter your email">
<input type="text" name="" placeholder="Enter your phone number">
</div>
<button class = "btn" class = "SubmitBtn">Submit</button>
</form>
</div>
</body>
</html>