-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
47 lines (41 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tharin Edirisinghe-Contact</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<h1>Tharin Edirisinghe</h1>
<h3>IT Undergraduate | ICT Teacher | Content Creator</h3>
</header>
<nav>
<ul>
<li><b><a href="index.html">About Me</a></b></li>
<li><b><a href="projects.html">Projects</a></b></li>
<li><b><a href="contact.html">Contact</a></b></li>
</ul>
</nav>
<section id="contact">
<h1>Contact Me</h1>
<form action="https://formspree.io/f/your-form-id" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" placeholder="Enter your message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
<footer>
<p>© 2024 Tharin Edirisinghe</p>
<p>Follow me on:
<a href="https://www.linkedin.com/in/tharin-edirisinghe-838a54223" target="_blank">LinkedIn</a> |
<a href="https://github.com/tharinedirisinghe" target="_blank">GitHub</a>
</p>
</footer>
</body>
</html>