-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html assignment 3.html
68 lines (65 loc) · 1.9 KB
/
Index.html assignment 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assesment_2</title>
</head>
<body>
<h1>FORMS</h1><br>
<form action="index.html">
Name
<input type="text" placeholder="name" id="name" value name="name" required>
<br>
<br>
Email Address
<input type="email" placeholder="email" id="email" name="email" required>
<br>
<br>
Password
<input type="password" placeholder="password" id="password" name="password" required>
<br>
<br>
Language:
<br>
<br>
<input type="radio" name="Language" value="React" required>
React
<br>
<input type="radio" name="Language" value="Angular" required>
Angular
<br>
<input type="radio" name="Language" value="Vue" required>
Vue
<br>
Course
<br>
<input type="checkbox" mern required name="MERN">
MERN
<br>
<input type="checkbox" mean required name="MEAN">
MEAN
<br>
<input type="checkbox"mevn required name="MEVN">
MEVN
<br>
Field :
<br>
<select name="Field" required>
<option value="Front End">Font End</option>
<option value="Back End">Back End</option>
<option value="Full Stack">Font stack</option>
</select>
<br><br>
<textarea name="Description" id cols="50" rows="10"></textarea>
<br><br>
Phone Number
<input type="number" name="telephonic">
<br>
<br>
<input type="submit" value="submit" style="background-color: rgb(183, 106, 12);">
</form>
<h1>Tables</h1>
<a href="table.html">Click here</a>
</body>
</html>