-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQues-9.html
30 lines (26 loc) · 917 Bytes
/
Ques-9.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QUESTION-9</title>
</head>
<body>
<h1 align="center">Simple Web-Page for Registration Form</h1>
<form action="">
<h2>Personal Information</h2>
<label for="fname">First Name: </label>
<input type="text" id="fname" name="fname" placeholder="Roshni" tabindex="2" >
<br><br>
<label for="lname">Last Name: </label>
<input type="text" id="last-name" name="last-name" placeholder="Sharma" tabindex="1">
<br><br>
<label for="email">Email: </label>
<input type="email" name="email" id="email" placeholder="xyz@hello.com" tabindex="4">
<br><br>
<div class="container">
<button type="submit" tabindex="3">Submit</button>
</div>
</form>
</body>
</html>