-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body style="background-color: bisque;">
<h1>Registartion Form 1</h1>
<h1><a href="index2.html">Registartion Form 2</a></h1>
<h1><a href="index3.html">Registartion Form 3</a></h1>
<br>
<form>
<fieldset>
<legend>Login details </legend>
<label for="name">Name:</label>
<input type="text" name="name" id="name"><br><br>
<label for="email">Email:</label>
<input type="email" name="email" id="email"><br><br>
<label for="Password">Password:</label>
<input type="password" name="password" id="password"><br><br>
</legend>
</fieldset>
<fieldset>
<legend>Your feedback</legend>
Please check all the emotions that apply to you:
<br><br>
Angry <input type="checkbox"><br>
Sad <input type="checkbox"><br>
Happy <input type="checkbox"><br>
Ambivalent <input type="checkbox"><br><br>
How satisfied where you with our service?
<br><br>
Very satisfied <input type="radio">
</fieldset>
</form>
</body>
</html>