-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
37 lines (29 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AEROGRAPHY</title>
<link rel="icon" type="image/x-icon" href="imgs/favicon-coral.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header" id="navbar">
<a href="./index.html" class="logo">AEROGRAPHY</a>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="./works.html">works</a></li>
<li><a href="./words.html">words</a></li>
<li><a href="./about.html">about</a></li>
<li><a href="./phd.html">PhD</a></li>
<li class="active_page"><a href="./contact.html">contact</a></li>
</ul>
</header>
<div class="form_container">
<iframe class="contact_form" src="https://docs.google.com/forms/d/e/1FAIpQLSeCOTUyVR694YxH5RZqC1MuE9iE9Jvq4OZj1zwzVgckCC0JwQ/viewform?embedded=true" width="640" height="848" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<script src="scroll.js"></script>
</body>
</html>