-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
37 lines (37 loc) · 1.29 KB
/
contact.html
File metadata and controls
37 lines (37 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h2 class="logo"><a href="index.html">personal website</a></h2>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<div class = "contact">
<h1>Contact</h1>
<form class = "contact-form">
<label for = "text" > Name: </label>
<input type = "text" id = "email"></input>
<label for = "email" > Email: </label>
<input type = "email" id = "name"></input>
<label for = "message" > Message: </label>
<textarea id = "message">Your Message</textarea>
<input type = "submit" id = "submit-button"></input>
</form>
<p>Phone: (916)218-0827</p>
<p>Email: ameliaharris492@gmail.com</p>
</div>
</div>
</main>
<footer class = "footer">© 2025 Amelia Harris | All Rights Reserved</footer>
</body>
</html>