-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
40 lines (33 loc) · 990 Bytes
/
contact.php
File metadata and controls
40 lines (33 loc) · 990 Bytes
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
<?php
include 'head2.php';
?>
<body>
<div class="wrapper">
<div class="bannermiddle">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="networks.php">Networks</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
</div>
<div class="container">
<form id="contact" class="contact animated bounce" action="" method="post">
<h3>Contact</h3>
<h4>Enter questions or concerns down below</h4>
<fieldset>
<input placeholder="Your name" type="text" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input placeholder="Your Email Address" type="email" tabindex="2" required>
</fieldset>
<fieldset>
<textarea placeholder="Type your message here...." tabindex="5" required></textarea>
</fieldset>
<fieldset>
<button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
</form>
</div>
</body>
</html>