-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
53 lines (53 loc) · 1.58 KB
/
contact.html
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
<!DOCTYPE html>
<html>
<head>
<title>Contact Me</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">Sean M. Nguyen</a></h1>
<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>
<h1 class="page-title">Contact</h1>
<p>Email: [email protected]</p>
<p>
Linkedin:
<a href="https://www.linkedin.com/in/seanmnguyen/">
https://www.linkedin.com/in/seanmnguyen/
</a>
</p>
<p>
GitHub:
<a href="https://github.com/seanmnguyen">
https://github.com/seanmnguyen
</a>
</p>
<form id="contact-form">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Name" required />
<br /><br />
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Email" />
<br /><br />
<label for="message">Message</label>
<textarea
id="message"
name="message"
placeholder="Message"
required
></textarea>
<br /><br />
<input type="submit" value="Submit" />
</form>
</main>
<footer class="footer">© 2023 Sean M. Nguyen | All Rights Reserved</footer>
</body>
</html>