-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
63 lines (56 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/27b39b2da2.js" crossorigin="anonymous"></script>
<title>Contact</title>
</head>
<body>
<!-- Navigation Bar -->
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Main Section -->
<main>
<section>
<h1>Get In Touch</h1>
<p>For any questions or inquiries, please reach out!</p>
</section>
<!-- Form -->
<form action="#">
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="Name"><br>
<br>
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="Email"><br>
<br>
<label for="message">Message:</label><br>
<br>
<textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea><br>
<br>
<button type="submit">Submit</button>
</form>
<br>
<hr>
<!-- Contact Information -->
<article>
<h2>Contact Information</h2>
<ul class="contact" style="font-size: 20px;">
<li><a href="tel:555-55-5555"><i class="fa-solid fa-phone"> </i>(555) 55-5555</a></li><br>
<li><a href="mailto:[email protected]"><i class="fa-solid fa-envelope"> </i>Email</a></li><br>
<li><a href="https://www.linkedin.com/in/nicolepayneswe/"><i class="fa-brands fa-linkedin-in"> </i>LinkedIn</a></li><br>
<li><a href="https://github.com/Npcodes1"><i class="fa-brands fa-github"> </i>GitHub</a></li>
</ul><br>
</article>
</main>
</body>
</html>