-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
46 lines (46 loc) · 1.89 KB
/
Copy pathcontact.html
File metadata and controls
46 lines (46 loc) · 1.89 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>contact</title>
<link rel="icon" type="image/x-icon" href="https://github.com/nicetry1/nicetry1.github.io/raw/main/media/on-earth-favicon.png">
<link rel='stylesheet' href='style.css'>
</head>
<body>
<nav id="navbar">
<ul class="navbar">
<li><a class="navbarcontact" href='index.html'>home</a></li>
<li><a class="navbarcontact" href='about.html'>about</a></li>
<li><a class="navbarcontact" href='explore.html'>explore</a></li>
<li><a class="navbarcontact" href='breakdown.html'>breakdown</a></li>
</ul>
</nav>
<div class="contact-flexbox">
<section id="contact-text">
<p>
Please be in touch if you have any interest in, thoughts about, or memories of the film or its subject matter. We'd love to hear from you!
</p>
</section>
<form action="javascript:void(0);" method="post" id="form">
<div class="labelContainer">
<label for="name">name</label>
<input type="text" id="name">
</div>
<div class="labelContainer">
<label for="detail">contact info</label>
<input type="text" id="detail">
</div>
<div class="labelContainer">
<label for="entry">message</label>
<textarea id="entry"></textarea>
</div>
<input id="submit" type="submit" value="submit">
</form>
</div>
<script src="scripts/contact.js"></script>
<div class="photobg">
<img src="https://github.com/nicetry1/nicetry1.github.io/raw/main/media/Bgstill.png" alt="a still frame of black and white super 8 film of a misty treeline at land's end in san francisco">
</div>
</body>
</html>