-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
24 lines (21 loc) · 916 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"">
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<title></title>
<link rel="stylesheet" type="text/css" href="contactstyle.css">
</head>
<body>
<div class="contact-section">
<h1> Contact Us</h1>
<form class="contact-form" action="contact_send.html" method="post" target="_self">
<input type="text" class="contact-form-text" placeholder="Your name">
<input type="email" class="contact-form-text" placeholder="Your email">
<input type="text" class="contact-form-text" placeholder="Your phone ">
<textarea class="contact-form-text" placeholder="Your Massage"></textarea>
<input type="Submit" class="contact-form-btn" value="Send">
</form>
</div>
</body>
</html>