-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
59 lines (59 loc) · 2.76 KB
/
book.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
<!DOCTYPE html>
<html lang="en">
<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>Book Now - iEdu</title>
<link rel="shortcut icon" href="https://img.icons8.com/?size=512&id=hJH38ZLt2wMU&format=png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/Assets/Project/iEdu/css/style.css">
</head>
<body>
<header class="background">
<div class="logo">
<img src="https://img.icons8.com/?size=512&id=hJH38ZLt2wMU&format=png" height="40" width="40" alt="">
</div>
<div class="links">
<ul>
<li><a href="index.html#" class="link">Home</a></li>
<li><a href="index.html#about" class="link">About</a></li>
<li><a href="index.html#contact" class="link">Contact Us</a></li>
</ul>
</div>
<div class="btns">
<button id="btn" disabled class="btn">Book Now</button>
</div>
</header>
<section class="hero background b23">
<div class="opaque">
<h1 class="text-center">Contact Us</h1>
<label class="text-left" for="input">Name</label>
<input class="info" type="text" id="input" placeholder="Name">
<label class="text-left" for="email">Email</label>
<input class="info" type="email" placeholder="Email Address" id="email">
<label class="text-left" for="phone">Phone Number</label>
<input class="info" type="tel" placeholder="Phone Number" id="phone">
<button type="submit" class="mt-5 btn">Submit</button>
</div>
</section>
<footer class="background">
<p class="small">© iEdu 2024 - All rights reserved</p>
<div class="btns">
<a href="https://instagram.in" style="font-size: 20px; height: 60px; width: 60px;" class="btn m-5">
<i class="bi bi-instagram"></i>
</a>
<a href="https://fb.com" style="font-size: 20px; height: 60px; width: 60px;" class="btn m-5">
<i class="bi bi-facebook"></i>
</a>
<a href="https://twitter.com/cobratate" style="font-size: 20px; height: 60px; width: 60px;" class="btn m-5">
<i class="bi bi-twitter"></i>
</a>
</div>
</footer>
</body>
<script src="index.js"></script>
</html>