-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
47 lines (41 loc) · 1.71 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<head>
<title>Alex Liow</title>
<link rel="shortcut icon" href="images/favicon.png" type="image/png">
<link rel="stylesheet" type="text/css" href="stylesheets/contact-form.css">
<link rel="stylesheet" type="text/css" href="stylesheets/sweetalert.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="js/contact-form.js" type="text/javascript"></script>
<script src="js/sweetalert.min.js"></script>
<script src="js/googleAnalytics.js"></script>
</head>
<div id="personalBackground">
<a href="index.html"><img src="images/navface.png" class="navface" alt="profile"></a>
<ul class="navbar">
<li><a href="contact.html"><img class="icon" src="images/contact.png" alt="contact"></a></li>
<li><a href="interests.html"><img class="icon" src="images/interests.png" alt="interests"></a></li>
<li><a href="personal.html"><img class="icon" src="images/personal.png" alt="personal"></a></li>
<li><a href="index.html"><img class="icon" src="images/home.png" alt="home"></a></li>
</ul>
<br>
<br>
<p id="heading">CONTACT</p>
</div>
<div id="form-container">
<span id="contactHeader">Send Me a Message</span>
<div class="form-style-8">
<form id="form">
<input type="text" name="name" placeholder="Name" required/>
<input type="email" name="reply_to" placeholder="Email" required/>
<textarea placeholder="Message" name="message" onkeyup="adjust_textarea(this)"></textarea>
<input type="submit" value="Send Message" />
</form>
</div>
</div>
<div id="footer">
<br>
<br>
<span>Designed and Built by Alex Liow | Cornell University | Class of 2016</span>
</div>
</html>