forked from Kp31-07-2001/hack_it
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 1.68 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 1.68 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
<!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>Forms</title>
</head>
<body>
<form action="" method="">
<label for="name">First name</label>
<input type="text" name="name" id="name">
<br><br>
<h1>Sen</h1>
<label for="password">Password</label>
<input type="password" placeholder="password" id="password">
<br><br>
<label for="email">E-mail</label>
<input type="email" name="" id="email" value="xyz@gmail.com"><br>
<label for="desp">Description</label>
<textarea name="" id="desp" cols="30" rows="10"></textarea>
<br><br>
<h1>Srijan</h1>
<p>Please select fav coding language?</p>
<input type="radio" name="lang" id="java">java
<input type="radio" name="lang" id="c++">c++
<input type="radio" name="lang" id="python">python
<br><br>
<h1>Web Development</h1>
<p>Please select</p>
<input type="checkbox" value="java" name="program" id="java">Java
<input type="checkbox" value="python" checked name="program" id="python">Python
<input type="checkbox" value="c++" name="program" id="c++">c++
<br><br>
<label for="lang">Select</label>
<select name="lang" id="lang">
<option value="java">Java</option>
<option value="python">Pythin</option>
<option value="c++">c++</option>
</select>
<br><br>
<input type="submit" name="" id="" value="Submit Please">
</form>
<a href="index.html">home</a>
</body>
</html>