-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
55 lines (49 loc) · 2.15 KB
/
contact.php
File metadata and controls
55 lines (49 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet prefetch" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Monoton' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<title>Contact</title>
</head>
<body>
<div id="particles-js"></div>
<div id="content">
<header>
<a href="index.php"><img src="Dev.png" /></a>
<h1>Getting in touch is easy!</h1>
<p><strong>Interested in getting in touch?</strong> Fill out the form below and we can get started on creating something amazing together!</p>
</div>
</div>
<article>
<div class="container">
<form action="" method="post">
<div class="row">
<div class="six columns">
<label for="email">Your email</label>
<input class="u-full-width" name="email" type="email" placeholder="Your email..." id="email">
</div>
<div class="six columns">
<label for="name">Your Name</label>
<input class="u-full-width" name="name" type="text" placeholder="Your name..." id="name">
</div>
</div>
<label for="message">Message</label>
<textarea class="u-full-width" name="message" placeholder="Hi Cameron..." id="message"></textarea>
<button type="submit" name="submit" class="button">Submit</div>
</form>
</div>
</article>
</div>
<?php include './footer.php' ?>
</div>
<script src="particles.js"></script>
<script src="scripts.js"></script>
</body>
</html>