-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
35 lines (33 loc) · 1.31 KB
/
contact.html
File metadata and controls
35 lines (33 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Type-Along</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="nav-bar">
<a class="home" href="index.html">
<div class="home_btn">
<img class="logo_img" src="Images/logo_svg.svg" alt="Type-Along logo" />
<h2>Type-Along</h2>
</div>
</a>
<nav>
<ul class="nav-links">
<li><a href="explainer.html">Explainer Video</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSctcEZnoB8sQ0unMjsQLvl2Uapf-1H2CiupHYw-YrL4CzZnbg/viewform"
target="_blank" rel="noopener"">Subscribe to Our Newsletter</a></li>
</ul>
</nav>
</header>
<div class="contact-container">
<iframe class="contact-form"
src="https://docs.google.com/forms/d/e/1FAIpQLSeVVRAKkQPu0VR2hU2uVO5y_OauqFFeuYCP5WJ4zAgPiFLw_w/viewform?embedded=true"
width="700" height="520" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</body>
</html>