-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
31 lines (29 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Me!</title>
<script src="/script/libraries/jquery-3.4.1.min.js"></script>
<link rel="stylesheet" href="/css/contact.css">
<link rel="stylesheet" href="/css/headers.css">
</head>
<body>
<nav id="topbar">
</nav>
<div class="contact-section">
<h1>Contact Us!</h1>
<h1>THIS PAGE IS UNDER CONSTRUCTION</h1>
<form class="contact-form" action="index.html" method="post">
<input type="text" class="contact-form-text" placeholder="your name" name="name">
<input type="text" class="contact-form-text" placeholder="your email" name="Email">
<input type="text" class="contact-form-text" placeholder="your phone number" name="phonenumber">
<textarea class="contact-form-text" placeholder="your message"></textarea>
<input type="submit" class="contact-form-btn" value="Send">
</form>
<h1>You can reach me at: [email protected]</h1>
</div>
<script src="/script/flexibleview.js"></script>
</body>
</html>