-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
executable file
·174 lines (116 loc) · 5 KB
/
contact.html
File metadata and controls
executable file
·174 lines (116 loc) · 5 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact - Christina Gee</title>
<meta name="description" content="Contact page with contact form and simplicty information with e-mail and address. Contact form with check input and textarea. ">
<meta name="keywords" content="thomsoon, simplicity, theme, html5, contact, form">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="thomsoon.com">
<link rel="icon" type="image/png" href="img/icon.png" />
<!--Style-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-responsive.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!--Preloader-->
<div class="opacity-nav">
<ul class="menu-fullscreen">
<li><a href="index.html">Home</a></li>
<li><a href="index.html">Projects</a></li>
<li><a href="about-us.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!--Header-->
<header class="boxed" id="header-white">
<div class="header-margin">
<div class="logo"><a href="index.html">CHRISTINA GEE</a></div>
<ul class="header-nav">
<li><a class="ajax-link" href="index.html">Projects</a>
<!--<ul>
### YOU WOULD PUT STUFF HERE <li><a href="projects.html">Projects</a></li>
<li><a href="single.html">Single project</a></li>
<li><a href="single-full.html">Single project fullscreen</a></li>
</ul>-->
</li>
<li><a href="about-me.html">About me</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<ul class="social-icon">
<div class="social-index">
<li><a href="https://www.facebook.com/cgee123"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://wordpress.com/posts/christinargee.wordpress.com"><i class="fa fa-wordpress"></i></a></li>
<li><a href="https://www.twitter.com/christinagee12"><i class="fa fa-twitter"></i></a></li>
</div>
</ul>
</div>
</header>
<!--Content-->
<div class="content" id="ajax-content">
<div class="text-intro">
<h1>Contact</h1>
<p>To contact me please use the contact form visible. When sending files, please use the following e-mail</p>
<form method="post" action="?" data-jkit="[form:validateonly=true]">
<div class="contact-one">
<p>
<label for="miniusername">Full Name:</label><br />
<input name="miniusername" id="miniusername" data-jkit="[validate:required=true;min=3;max=10;error=Please enter your username (3-10 characters)]">
</p>
</div>
<div class="contact-two">
<p>
<label for="miniemail">E-mail:</label><br />
<input name="miniemail" id="miniemail" data-jkit="[validate:required=true;strength=50;error=Please write your email]">
</p>
</div>
<div class="contact-three">
<p>
<label>Message:</label><br />
<textarea id="message" name="message"></textarea><br/><br/>
<input class="button-submit" name="send" type="submit" value="SUBMIT" />
</p>
</div>
<p>
</p>
</form>
</div>
<br/><br/><br/><br/><br/><br/><br/><br/>
</div>
<!--Home Sidebar-->
<div id="ajax-sidebar"></div>
<!--Footer-->
<footer>
<div class="footer-margin">
<div class="social-footer">
<a href="https://www.facebook.com/cgee123"><i class="fa fa-facebook"></i></a>
<a href="https://wordpress.com/posts/christinargee.wordpress.com"><i class="fa fa-wordpress"></i></a>
<a href="https://www.twitter.com/christinagee12"><i class="fa fa-twitter"></i></a>
</div>
</div>
<div class="copyright">Site created by Christina Gee </div>
</div>
</footer>
<!--Scripts-->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/modernizr.custom.42534.js" type="text/javascript"></script>
<script src="js/jquery.waitforimages.js" type="text/javascript"></script>
<script src="js/typed.js" type="text/javascript"></script>
<script src="js/masonry.pkgd.min.js" type="text/javascript"></script>
<script src="js/imagesloaded.pkgd.min.js" type="text/javascript"></script>
<script src="js/jquery.jkit.1.2.16.min.js"></script>
<script src="js/script.js" type="text/javascript"></script>
<script>
$('#button, #buttons').on('click', function() {
$( ".opacity-nav" ).fadeToggle( "slow", "linear" );
// Animation complete.
});
</script>
</body>
</html>