-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
22 lines (22 loc) · 979 Bytes
/
index.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>contact-us</title>
</head>
<body>
<div class="contact-us">
<form action="send-file.php" method="post">
<input name="name" type="text" class="feedback-input" placeholder="Name" />
<input name="email" type="text" class="feedback-input" placeholder="Email" />
<input name="website" type="text" class="feedback-input" placeholder="Website with HTTP or HTTPS" />
<input name="tellnumber" type="text" class="feedback-input" placeholder="Tell Number" />
<textarea name="messegecontent" class="feedback-input" placeholder="Comment"></textarea>
<input type="submit" value="SUBMIT" name="submit"/>
</form>
</div>
</body>
</html>