-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathform.html
More file actions
30 lines (25 loc) · 1.01 KB
/
form.html
File metadata and controls
30 lines (25 loc) · 1.01 KB
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>FORM</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<form>
<h4>All Fields Required</h4>
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname" placeholder="FirstName"><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname" placeholder="LastName"><br>
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" placeholder="Email Address"><br>
<label for="Comments" id="lcomments">Comments:</label>
<input type="text" id="comments" name="comments" placeholder="Type a comment here..."><br>
<!--<label for="Comments">Comments:</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:100px"></textarea><br>-->
<input type="submit" value="Submit">
</form>
</body>
</html>