-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday2.html
19 lines (19 loc) · 875 Bytes
/
day2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Day2</title>
</head>
<body>
<h1>Please fill the following details</h1>
<form action="#">
<label for="fname">First*<input type="text" placeholder = "Enter your first name" id ="fname" required></label>
<label for="lname">Last*<input type="text" placeholder = "Enter your last name" id ="lname" required></label>
<label for="number">Phone NO<input type="text" placeholder = "Enter your number" id ="number" required></label>
<label for="address">Address<input type="text" placeholder = "Enter your address" id ="address" required></label>
<button type="submit">Submit</button>
</form>
</body>
</html>