-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
112 lines (98 loc) · 3.93 KB
/
contact.html
File metadata and controls
112 lines (98 loc) · 3.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Cory Christensen - Contact</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
<script src="./js/contact.js"></script>
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="twelve columns">
<nav>
<ul>
<li><button><a href="index.html">Home</a></button></li>
<li><button><a href="about.html">About</a></button></li>
</ul>
</nav>
</div>
</div>
<div class="row">
<div class="twelve columns">
<button id="openModal">Additional Contact Information</button>
</div>
</div>
</div>
</header>
<div class="container">
<h3>Contact Me</h3>
<form id="contactForm">
<div class="row">
<div class="six columns">
<label for="emailInput">Your email</label>
<input class="u-full-width" type="text" placeholder="test@mailbox.com" id="emailInput">
</div>
<div class="six columns">
<label for="contactSubject">Reason for contacting</label>
<select class="u-full-width" id="contactSubject">
<option value="Questions">Questions</option>
<option value="Admiration">Admiration</option>
<option value="Business">Business</option>
</select>
</div>
</div>
<label for="exampleMessage">Message</label>
<textarea class="u-full-width" placeholder="Hi Cory, " id="contactMessage"></textarea>
<label class="send-yourself-copy">
<input type="checkbox" id="contactcc">
<span class="label-body">Send a copy to yourself</span>
</label>
<input class="button-primary" type="submit" value="Submit">
</form>
</div>
<div id="contactModal" class="modal">
<div class="modal-content">
<span class="close">x</span>
<section class="contact">
<div class="container">
<div class="row">
<div class="twelve columns">
<h3>Contact Me</h3>
<img class="profile" src="images/profile_2.jpg"></img>
<p>Email: christensen.corym(at)gmail.com</p>
</div>
</div><!--end of .row-->
<div class="row">
<div class="offset-by-two eight columns">
<ul>
<li><a href="http://twitter.com/ChristensenCory" title="">Twitter</a></li>
<li><a href="http://linkedin.com/in/corymchristensen" title="">Linkedin</a></li>
<li><a href="http://github.com/Cory-Christensen" title="">Github</a></li>
</ul>
</div>
</div><!--end of .row-->
</div><!--end of .container-->
</section>
</div>
</div>
</body>
</html>