-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (19 loc) · 711 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (19 loc) · 711 Bytes
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>
<head>
</head>
<body>
<div class="contact-form">
<form id="contact-form" method="post" action="contactform.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>