-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-task-2.html
72 lines (58 loc) · 1.77 KB
/
html-task-2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML TASK 2</title>
</head>
<body>
<a href="index.html">Task 1</a>
<a href="html-task-2.html">Task 2</a>
<a href="html-task-3.html">Task 3</a>
<a href="html-task-4.html">Task 4</a>
<center>
<h1>Novell Service Login</h1>
</center>
<label for="">Username</label>
<input type="text">
<br><br>
<label for="">Password</label>
<input type="password">
<br><br>
<label for="">City of Employment</label>
<input type="text">
<br><br>
<label for="">Web Server</label>
<select name="" id="">
<option value="" selected disabled>-Choose a server-</option>
<option value="">Pakistan</option>
<option value="">US</option>
<option value="">India</option>
</select>
<br><br><br><br><br>
<label for="">Please specify your role: </label>
<input type="radio" name="radio">
<label for="">Admin</label>
<input type="radio" name="radio">
<label for="">Enginner</label>
<input type="radio" name="radio">
<label for="">Manager</label>
<input type="radio" name="radio">
<label for="">Guest</label>
<br><br><br><br><br>
<label for="">Signle Sign on to the following</label>
<input type="checkbox">
<label for="">Mail</label>
<input type="checkbox">
<label for="">Payroll</label>
<input type="checkbox">
<label for="">Self service</label>
<center>
<button>Login</button>
<button>Reset</button>
</center>
<h1>Muhammad Arham Ali Khan <br>
Roll No 4277
</h1>
</body>
</html>