-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
79 lines (65 loc) · 2.49 KB
/
contact.html
File metadata and controls
79 lines (65 loc) · 2.49 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
<!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">
<link rel=stylesheet href="css/style.css">
<!-- Font Awesome CDN -->
<script src="https://kit.fontawesome.com/be448364f4.js" crossorigin="anonymous"></script>
<title>Final Project</title>
</head>
<body>
<!-- ------ NAV BAR ------>
<!-- Top Navigation -->
<div class="topnav" id="navbar">
<!-- Centered Logo Home Link -->
<div class="topnav-centered">
<a href="index.html"><img src="img/centernav_logo.png" alt="image only site logo" class="navimg"></a>
</div>
<!-- Left-Aligned Links -->
<a href="self.html" id="self">self</a>
<a href="relationships.html" id="relationships">relationships</a>
<a href="style.html" id="style">style</a>
<!-- Right-Aligned Links -->
<div class="topnav-right">
<a href="faves.html" id="faves">faves</a>
<a href="about.html" id="about">about</a>
<a href="contact.html" id="contact">contact</a>
</div>
</div>
</nav>
<!-- CONTACT FORM -->
<div class="contactcontainer">
<form action="action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your first name...">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name...">
<label for="timezone">Time Zone</label>
<select id="timezone" name="timezone">
<option value="PST">Pacific Time</option>
<option value="MST">Mountain Time</option>
<option value="CST">Central Time</option>
<option value="EST">Eastern Time</option>
</select>
<label for="message">Message</label>
<textarea id="subject" name="subject" placeholder="Write your message here..." style="height: 200px"></textarea>
<input type ="submit" value ="Submit">
</form>
</div>
<!-- Sticky Nav JS Import
<script src="js/stickynav.js"> -->
</script>
</body>
<!-- FOOTER -->
<footer>
<div class="footer">
<div class="copyright">© Christina Moon Zurowski Copyright 2021</div>
<div class="socialmedia">
<a href="" class="fab fa-github-alt fa-2x"></a>
<a href="" class="fab fa-reddit-alien fa-2x"></a>
</div>
</div>
</footer>
</html>