generated from skills/github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
69 lines (69 loc) · 3.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Grace Wu's Portfolio">
<meta name="keywords" content="HTML, CSS, JavaScript, geospatial analyst, urban planning">
<meta name="author" content="Wen-Ying Wu (Grace Wu)">
<title>Grace Wu | Contact</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!-- <script src="contact-validation.js" type="text/javascript"></script> -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header style="height: 125pt;">
<div>
<!-- <img class="image-profile" src="images/headshots/headshot_grace.jpg"> -->
<p class="title">Grace Wu</p>
<p class="title-sub1">political science, coding, and urban policies</p>
<!-- <p class="title-sub2">This is my portfolio covering my academic and research projects during my two years at Tufts Universtiy.</p> -->
<!-- <p class="title-sub2">~site under construction...~</p> -->
</div>
</header>
<nav>
<ul class="nav-bar">
<li><a class="navigation" href="contact.html">Contact</a></li>
<!-- <li><a class="navigation" href="gallary.html">Gallary</a></li> -->
<li><a class="navigation" href="resume.html">Resume</a></li>
<li><a class="navigation" href="index.html">Home</a></li>
</ul>
</nav><br>
<body class="contact-form" id="contact-form">
<p style="margin-left: 20%; margin-right: 20%;">
Contact me through <u><a href="https://www.linkedin.com/in/gracewu220/" target="_blank">LinkedIn</a></u> or leave me a message below :)
</p>
<div class="contact-container">
<form action="https://formspree.io/f/mvonbeak" method="POST">
<label>First Name<span style="color: crimson;">*</span></label>
<input type="text" name="fname" id="fname" placeholder="e.g. Jane" required>
<label>Last Name<span style="color: crimson;">*</span></label>
<input type="text" name="lname" id="lname" placeholder="e.g. Doe" required>
<label>Email<span style="color: crimson;">*</span></label>
<input type="text" name="email" id="email" placeholder="e.g. [email protected]" required>
<label>Subject<span style="color: crimson;">*</span></label>
<input type="text" name="subject" id="subject" placeholder="e.g. Hello there!" required>
<label>What would you like to discuss?<span style="color: crimson;">*</span></label>
<textarea style="height:200px" name="message" id="message" placeholder="Write your message here..." required></textarea>
<input type="submit" name="submit" value="Submit">
</form>
</div>
<footer>
<div>
<p>
<a href="https://github.com/gracewu220" target="_blank"><i class="fa fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/gracewu220/" target="_blank"><i class="fa fa-linkedin fa-2x"></i></a>
<a href="https://twitter.com/wu_grace012" target="_blank"><i class="fa fa-twitter fa-2x"></i></a>
</p>
<p>
Copyright © 2023, Wen-Ying Wu (Grace Wu)<br>
<em>Last updated on 4/16/23</em>
</p>
</div>
</footer>
</body>
</html>