-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.php
43 lines (36 loc) · 1.29 KB
/
contactus.php
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
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<link rel="stylesheet" type="text/css" href="./css/styles.css ">
<link rel="stylesheet" type="text/css" href="./css/contact.css ">
</head>
<body>
<div class="page">
<!-- Title bar -->
<div class="header">
<div class="left">
<div class="dropdown">
<button class="dropbtn">Menu</button>
<div class="dropdown-content">
<a href="./index.php">Home</a>
<a href="./aboutus.php">About us</a>
<a href="./contactus.php">Contact us</a>
</div>
</div>
</div>
<div class="siteTitle">
CONTACT US
</div>
</div>
<div class="contact">
<form action="#" autocomplete="on"><!--autocomplete completes the input values based on values that the user has entered before -->
<input type="text" name="event-date" placeholder="Enter first name" required><br>
<input type="email" name="email" placeholder="Enter email" required><br>
<textarea name="message" placeholder="Type your message" required></textarea><br>
<input type="submit" name="submit" value="Send"><br>
</form>
</div>
</div>
</body>
</html>