-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
32 lines (26 loc) · 1.01 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="style.css">
</head>
<h1>Contact</h1>
<a href="index.html">HOME</a>
<body>
<div class="container">
<form action="action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="email">Email</label>
<input type="text" id="email" name="email" placeholder="Your Email">
<label for="Message">Message</label>
<textarea id="Message" name="Message" placeholder="Write something.." style="height:100px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>