-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (56 loc) · 1.83 KB
/
index.html
File metadata and controls
69 lines (56 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Assignment - 2</title>
</head>
<body>
<h1>FORMS</h1>
<form action="">
<label for="">NAME</label>
<input type="text" placeholder="Name">
<br><br>
<label for="">E-Mail</label>
<input type="email" placeholder="email" required>
<br><br>
<label for="">Password</label>
<input type="password" placeholder="password">
<br><br>
<label for="">Language</label>
<br><br>
<input type="radio" name="radio" id="HTML">HTML
<br>
<input type="radio" name="radio" id="CSS">CSS
<br>
<input type="radio" name="radio" id="JS">JS
<br><br>
<label for="">Course</label>
<br><br>
<input type="checkbox" name="course" id="abcd"> ABCD
<br>
<input type="checkbox" name="course" id="efgh"> EFGH
<br>
<input type="checkbox" name="course" id="ijkl"> IJKL
<br><br>
<label for="">Field:</label>
<br>
<select name="drodown" id="">
<option value="html">HTML</option>
<option value="CSS">CSS</option>
<option value="js">Javascript</option>
</select>
<br><br>
<textarea cols="30" rows="10" name="" id="" placeholder="describe yourself"></textarea>
<br><br>
<input type="date" name="" id="">
<br><br>
<label for="">Phone No.</label>
<input type="number" placeholder="Phone No.">
<br><br>
<input type="submit">
<br><br>
</form>
<a href="table.html">Click Here For Table File</a>
</body>
</html>