-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
48 lines (46 loc) · 1.66 KB
/
Copy pathdemo.html
File metadata and controls
48 lines (46 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Event Demo Booking</title>
<style>
body {
background-image: url("Demoimg.webp");
background-size: cover
}
</style>
</head>
<body>
<div class="nav">
<ul class="left" type="none">
<img class="home" src="https://imgs.search.brave.com/NyHePm1_NaEXi1xJ12mJzYt-wSS8XjuS7uPa8bFp0PY/rs:fit:860:0:0/g:ce/aHR0cHM6Ly90NC5m/dGNkbi5uZXQvanBn/LzAxLzkyLzgwLzI3/LzM2MF9GXzE5Mjgw/Mjc1OF9haUp0VUhm/eDQzUG8wdmg4MnFu/SExCOVJJTzZoOTMx/YS5qcGc"; style=" width:50px; height:50px ;">
<li><a href="project1.html">Go Back to Home</a></li>
</ul><br>
</div>
<header>
<h1>Virtual Event Demo Booking</h1>
</header>
<section class="booking-form">
<h2>Book a Demo</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<br><br>
<label for="date">Preferred Date:</label>
<input type="date" id="date" name="date" required>
<br><br>
<label for="time">Preferred Time:</label>
<input type="time" id="time" name="time" required>
<br><br>
<button type="submit">Submit</button>
</form>
</section>
<footer>
<p>© 2023 Virtual Event Booking</p>
</footer>
</body>
</html>