-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
45 lines (44 loc) · 1.79 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About & Contact - My Personal Website</title>
<link rel="stylesheet" href="styles.css">
<script src="load-nav.js"></script>
</head>
<body>
<header>
<h1>My Personal Website</h1>
</header>
<div id="navigation-placeholder"></div>
<div class="container">
<h2>About Me</h2>
<p>
Hello! I'm [Your Name], a [Your Profession/Field] based in [Your Location].
I'm passionate about [Your Interests/Specialties], and I use this blog to share my thoughts,
experiences, and knowledge about these topics.
</p>
<p>
[Add more details about your background, education, work experience, or any other relevant information]
</p>
<h2>Contact Me</h2>
<p>
I'm always excited to connect with like-minded individuals, potential collaborators,
or anyone interested in my work. Feel free to reach out to me through any of the following methods:
</p>
<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/yourprofile" target="_blank">Your LinkedIn Profile</a></li>
<li>Twitter: <a href="https://twitter.com/yourhandle" target="_blank">@YourHandle</a></li>
<li>GitHub: <a href="https://github.com/yourusername" target="_blank">Your GitHub Profile</a></li>
</ul>
<p>
I typically respond within 24-48 hours. Looking forward to hearing from you!
</p>
</div>
<footer>
<p>© 2023 Your Name. All rights reserved.</p>
</footer>
</body>
</html>