-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
50 lines (38 loc) · 968 Bytes
/
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
49
<Html>
<head>
<title>
Registration Page
</title>
</head>
<body bgcolor="black">
<br>
<br>
<form>
<label> First name </label>
<input type="text" name="firstname" size="15"/> <br> <br>
<label> Last name: </label>
<input type="text" name="lastname" size="15"/> <br> <br>
<br><br>
Email id :
<input type="email"id="email"name=email"/><br>
<br> <br>
<label>
Phone number:
</label>
<input type="text" name="country code" value="+91" size="2"/>
<input type="text" name="phone" size="10"/> <br> <br>
<label>Expectations from the event</label>
<input type="text" name="expectations from the event" size="100"/><br><br>
Address
<br>
<textarea cols="80" rows="5" value="address">
</textarea>
<label><br><br>Date of birth:
<input type="date"name="birthday"
required pattern="<\d{2}-\d{2}-\d{4}">
<span class="validity"><span>
<br><br>
<input type="button"value="submit"/>
</form>
</body>
</Html>