-
Notifications
You must be signed in to change notification settings - Fork 0
/
iplforms.html
126 lines (117 loc) · 4.31 KB
/
iplforms.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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><em>IPL Survey2k23</em></title>
</head>
<body>
<h1>IPL Survey - Give your Opinion😎 </h1>
<img src="https://img.cricketworld.com/images/f-123459/ipl-logo-22.jpg" alt="img not loaded" height="235" width="295">
<img src="https://media.tenor.com/jOQd7oBv5okAAAAd/msd-helicopter-shot-gif.gif" alt="gif error in loading" width="295" height="235">
<img src="https://img.cricketworld.com/images/f-123459/ipl-logo-22.jpg" alt="img not loaded" height="235" width="295">
<hr size="5" color="blue">
<form action="backend.js"></form>
<label for="1">Name : </label>
<div>
<input type="text" name="myName" id="1">
</div><br>
<div>
<label for="2">Age : </label><br>
<input type="number" name="myAge" id="2" >
</div><br>
<div>
<label for="3">Eligibility : </label>
<input type="checkbox" name="myEligibility" id="3" checked>
</div><br>
<div>
<label for="selection">Your Fav Team : </label>
<select name="favTeam" id="selection">
<option value="Mi" selected>MI</option>
<option value="Chennai">CSK</option>
<option value="RCB">RCB</option>
<option value="LSG">LSG</option>
<option value="GT">GT</option>
<option value="DC">DC</option>
<option value="RR">RR</option>
<option value="PBKS">PBKS</option>
<option value="KKR">KKR</option>
<option value="SRH">SRH</option>
</select>
</div><br>
<div>
<label for="gender">Gender : </label>
<input type="radio" name="Gender" id="Gender : "> Male
<input type="radio" name="Gender" id="Gender : "> Female
<input type="radio" name="Gender" id="Gender : "> Other
</div><br>
<div>
<h3>Stats📊</h3>
<table>
<thead>
<tr>
<th>Team   </th>
<th> (n)Title's    </th>
</tr>
</thead>
<tbody>
<tr>
<td>MI</td>
<td>5</td>
</tr>
<tr>
<td>CSK  </td>
<td>4</td>
</tr>
<tr>
<td>RCB  </td>
<td>0</td>
</tr>
<tr>
<td>LSG  </td>
<td>0</td>
</tr>
<tr>
<td>GT  </td>
<td>1</td>
</tr>
<tr>
<td>DC  </td>
<td>0</td>
</tr>
<tr>
<td>RR  </td>
<td>1</td>
</tr>
<tr>
<td>PBKS  </td>
<td>0</td>
</tr>
<tr>
<td>KKR  </td>
<td>2</td>
</tr>
<tr>
<td>SRH  </td>
<td>1</td>
</tr>
</tbody>
</table>
<div>
<h3>This year <em>POINTS TABLE </em></h3>
<a href="https://www.outlookindia.com/ipl/pointtable" target="_blank">Refer to points table</a>
</div><br>
<div>
<!-- Which team wins TATA IPL2k23🤔 and why?Give your opinion<input type="text" name="winner" id="op"> -->
Which team wins TATA IPL2k23🤔 and why?Give your opinion <br><textarea name="winner" id="op" cols="45" rows="10" itemid="op"></textarea>
</div><br>
<div>
<input type="submit" value="Submit now">
<input type="reset" value="Reset now">
</div><br><br>
<div>
<img src="https://i.pinimg.com/originals/88/66/7e/88667eaf29f1bbf12d64abaaeae6caa2.gif" alt="gif">
</div>
</body>
</html>