forked from tmoreton/useful.ly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
56 lines (48 loc) · 2.03 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
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>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact</title>
<!-- Style Guide CSS -->
<link href="css/form.css" rel="stylesheet">
<link href="css/buttons.css" rel="stylesheet">
<link href="css/flex.css" rel="stylesheet">
<link href="css/font-sizes.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/modal.css" rel="stylesheet">
<link href="css/hamburger.css" rel="stylesheet">
<link href="css/nav.css" rel="stylesheet">
<link href="css/variables.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
</head>
<body>
<!-- Form Start -->
<form id="contact-form" action="#" method="POST">
<div class="flex">
<input style="display:none;" type="text" name="honey" value=""/>
<div class="flex-6 flex-mobile-12" style="padding: 10px;">
<input required type="name" name="name" value="">
<label>Name <span>*</span></label>
</div>
<div class="flex-6 flex-mobile-12" style="padding: 10px;">
<input required type="email" name="email" value="">
<label>Email <span>*</span></label>
</div>
<div class="flex-12" style="padding: 10px;">
<textarea required type="text" name="message" value=""></textarea>
<label>Message <span>*</span></label>
</div>
<button type="submit" value="Submit" class="center form-submit">Submit</button>
</div>
</form>
<!-- Form End -->
<!-- Style Guide JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/script.js"></script>
<script src="js/contact.js"></script>
</body>
</html>