-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
27 lines (21 loc) · 872 Bytes
/
main.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
<html>
<head>
<title> Contact Form Design</title>
<link rel="stylesheet" type="text/css" href="styling.css">
</head>
<body>
<div class="Contact-Title">
<h1>Hello!</h1>
<h2>We are always ready to serve you1</h2>
</div>
<div class="conact-form">
<form id="contact-form" method="post" action="contact-form-handler.php">
<input name="name" type="text" class="form-control" placeholder="Your Name" required>
<br>
<input name="email" type="email" class="form-control" placeholder="Your Email" required><br>
<textarea name="message" class="form-control" placeholder="Message" row="4" required></textarea><br>
<input type="submit" class="form-control submit" value="SEND MESSAGE">
</form>
</div>
</body>
</html>