-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
56 lines (54 loc) · 1.55 KB
/
contact.php
File metadata and controls
56 lines (54 loc) · 1.55 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE>
<html>
<head>
<meta name="viewport" content="initial-scale=1">
<title>DCI - Contact</title>
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<link type="text/css" rel="stylesheet" href="css/styles.css">
<link href='http://fonts.googleapis.com/css?family=Rambla:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<?php $active = 'contact';
include('menu.php');
?>
</header>
<section>
<h1 style="text-align: left">CONTACT</h1>
<div class="contact">
<img src="images/DCI_Logo_large.png">
</div>
<div class="contact">
<div class="card">
<figure class="front">
<form action="" method="">
<div>
<input type="text" id="name" placeholder="Name" required/>
</div>
<div>
<input type="email" id="mail" placeholder="E-mail" required/>
</div>
<div>
<textarea id="msg" placeholder="Type your message here..." required></textarea>
</div>
<div class="button">
<button type="submit">Send</button>
</div>
</form>
</figure>
<figure class="back">
<div>
<p>Thank you.<br />Your message has been sent!</p>
</div>
</figure>
</div>
</div>
</section>
<footer>
<?php include("footer.php"); ?>
</footer>
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="js/contactForm.js"></script>
<script src="js/mainScript.js"></script>
</body>
</html>