-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
114 lines (107 loc) · 3.93 KB
/
contact.html
File metadata and controls
114 lines (107 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
113
114
<!DOCTYPE HTML>
<!--
Elevation by Pixelarity
pixelarity.com | hello@pixelarity.com
License: pixelarity.com/license
-->
<html>
<head>
<title>May Gade Pedersen</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1><a href="index.html">May Gade Pedersen</a></h1>
<nav id="nav">
<ul>
<li><a href="index.html">About me</a></li>
<!--
<li>
<a href="#" class="icon solid fa-angle-down">Page Layouts</a>
<ul>
<li><a href="left-sidebar.html">Left Sidebar</a></li>
<li><a href="right-sidebar.html">Right Sidebar</a></li>
<li><a href="no-sidebar.html">No Sidebar</a></li>
<li>
<a href="#">Submenu</a>
<ul>
<li><a href="#">Option 1</a></li>
<li><a href="#">Option 2</a></li>
<li><a href="#">Option 3</a></li>
<li><a href="#">Option 4</a></li>
</ul>
</li>
</ul>
</li>
-->
<li><a href="research.html">Research</a></li>
<li><a href="./documents/CV.pdf" download>CV</a></li>
</ul>
</nav>
</header>
<!-- Main-->
<div class="wrapper style1">
<section id="main" class="container">
<header class="major">
<h2>Contact Me</h2>
<p>You can contact me by either filling out the form below or by sending an email to may.pedersen [at] sydney.edu.au.</p>
</header>
<!-- Content -->
<section class="box">
<!-- <h3>Form</h3> -->
<form method="post" action="mailto:may.pedersen@sydney.edu.au">
<div class="row gtr-uniform gtr-50">
<div class="col-6 col-12-narrower">
<input type="text" name="name" id="name" value="" placeholder="Name" />
</div>
<div class="col-6 col-12-narrower">
<input type="email" name="email" id="email" value="" placeholder="Email" />
</div>
<div class="col-6 col-12-narrower">
<input type="checkbox" id="copy" name="copy">
<label for="copy">Email me a copy of this message</label>
</div>
<div class="col-6 col-12-narrower">
<input type="checkbox" id="human" name="human">
<label for="human">I am a human and not a robot</label>
</div>
<div class="col-12">
<textarea name="message" id="message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Send Message" /></li>
<li><input type="reset" value="Reset" class="alt" /></li>
</ul>
</div>
</div>
</form>
</section>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="https://www.linkedin.com/in/may-gade-pedersen-b52281227/?originalSubdomain=au" class="icon brands fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
<li><a href="https://orcid.org/0000-0002-7950-0061" class="icon brands fa-orcid"><span class="label">ORCID</span></a></li>
</ul>
<ul class="menu">
<li>Content by May Gade Pedersen</li>
<li>Design by Pixelarity</li>
</ul>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>