-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.html
More file actions
72 lines (63 loc) · 2.3 KB
/
Registration.html
File metadata and controls
72 lines (63 loc) · 2.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Registration</title>
</head>
<body>
<header>
<section>
<h1>Event Name</h1>
<img src="download.jpeg" alt="Image" width="300" height="200" />
<nav>
<ul>
<li><a href="task.html">Home</a></li>
<li><a href="Schedule.html">Schedule</a></li>
<li><a href="Speakers.html">Speakers</a></li>
<li><a href="Venue.html">Venue</a></li>
<li><a href="Registration.html">Registration</a></li>
<li><a href="FAQ.html">FAQ</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="About.html">About</a></li>
</ul>
</nav>
</section>
</header>
<h2>Register For The Event</h2>
<form action="" method="">
<fieldset>
<legend>Personal Information</legend>
<label for="name">Name:</label>
<input type="text" id="name" name="name" />
<label for="email">Email:</label>
<input type="email" id="email" name="email" />
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" />
</fieldset>
<fieldset>
<legend><b>Ticket Information</b></legend>
<label for="ticket">Ticket Type:</label>
<select id="ticket" name="ticket">
<option value="standard">Standard</option>
<option value="vip">VIP</option>
<option value="student">Student</option>
</select>
<p><b>MEAL Preferences</b></p>
<label for="vegetarian">Vegetarian</label>
<input type="checkbox" />
<label for="non-vegetarian">Non-Vegetarian</label>
<input type="checkbox" />
<p><b>Workshop</b></p>
<label for="workshop1">Workshop 1</label>
<input type="checkbox" />
<label for="Workshop2">Workshop 2</label>
<input type="radio" />
</fieldset>
<label for="comments"><b>Additional Comments</b></label>
<input type="textarea" />
<textarea name="Message" id="Message">Message</textarea>
<button>Submit</button>
</form>
</body>
</html>