-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask_1.html
More file actions
65 lines (56 loc) · 2.55 KB
/
Copy pathtask_1.html
File metadata and controls
65 lines (56 loc) · 2.55 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Event Registration Form</h1>
<fieldset>
<legend> Personal Information</legend>
<label for="name">Full Name:</label>
<input type="text" name="Full Name" id="name" placeholder="Enter your name"> <br>
<label for="email">Email Address:</label>
<input type="email" name="email addres" id="email" placeholder="Enter your email" size="30"> <br>
<label for="number">Phone Number: </label>
<input type="tel" name="phone number" id="number" size="20" placeholder="Enter your phone number!" size="30">
</fieldset>
<fieldset>
<legend> Event Details</legend>
<label for="event name">Event Name:</label>
<input type="text" name="name" id="event name" placeholder="Enter your name!"> <br>
<label for="date">Event Date:</label>
<input type="date" name="event date" id="date"> <br>
<label for="location">Event Location: </label>
<input type="url" name="event location" id="location" placeholder="Enter your phone location!" size="30">
</fieldset>
</fieldset>
<fieldset>
<legend> Ticket Selection </legend>
<label for="event name">Choose Ticket Type:</label>
<br>
<input type="radio" name="standart ticket" id="standart">
<label for="standart"> Standart</label> <br>
<input type="radio" name=" VIP ticket" id="VIP">
<label for="VIP"> VIP</label> <br>
<label for="quantity">Quantity: </label>
<input type="number" name="number" id="quantity" min="3" max="20">
</fieldset>
<fieldset>
<legend> Dietary Preferences </legend>
<label for="dietary">Do you have any dietary preferences?</label>
<br>
<input type="checkbox" name="name vegetarian" id="vegetarian">
<label for="vegetarian"> Vegetarian</label> <br>
<input type="checkbox" name="name vegan" id="vegan>
<label for=" vegan"> Vegan </label> <br>
<input type="checkbox" name="name gluten free" id="gluten free">
<label for="gluten free"> Gluten-Free </label> <br>
</fieldset>
<label for="comments">Additional Comments:</label> <br>
<textarea name="text" id="comments"></textarea> <br>
<input type="checkbox" name="terms and conditions" id="conditions">
<label for="conditions">I agree to the terms and conditions</label> <br>
<button type="submit">Register</button>
</body>
</html>