-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
47 lines (37 loc) · 1.4 KB
/
contact.html
File metadata and controls
47 lines (37 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contact</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href= "rocket-lunch.png" type="image/x-icon">
</head>
<body class="contact-page">
<header>
<a href="index.html" class="logo"> Daniel Miranda</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="portfolio.html">Portfolio</a>
<a href="resume.html">Resume</a>
<a href="contact.html" class="active">Contact</a>
</nav>
</header>
<main class="contact">
<h1>Let's Connect!</h1>
<p>Fill out the boxes below to get in touch</p>
<form id="contact-form">
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="Name"><br>
<label for="email">Email</label>
<input type="text" name="email" id="email" placeholder="Email"><br>
<label for="message">Message</label>
<textarea name="message" id="message" cols="30" rows="5" placeholder="Message"></textarea><br>
<input type="submit" name="submit" id="submit">
</form>
</main>
<footer class="footer">
<p>© 2024 Daniel's Personal Website | All Rights Reserved</p>
</footer>
</body>
</html>