Files
complete-intro-to-web-dev-v3/blog/about.html
Marius Cerchez 0645c7f572 Update repo
2026-02-09 14:56:09 +02:00

33 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My About Page</title>
</head>
<body>
<h1>My Blog</h1>
<a href="index.html">Go home</a>
<h2>About Me</h2>
<p>
Hi! I'm David Thomson, and I'm a web developer. I love creating websites
and learning new things. I'm so excited to share my blog with you!
</p>
<p>
I'm currently working on a few projects, including a personal blog and a
portfolio site. I'm also learning new technologies like React and Node.js.
</p>
<p>
When I'm not coding, I enjoy hiking, reading, and spending time with my
family. I'm always looking for new adventures and challenges, so feel free
to reach out if you have any ideas!
</p>
<h2>My Career so far</h2>
<ul>
<li>Web Developer at XYZ Corp (2018-2020)</li>
<li>Freelance Web Developer (2016-2018)</li>
<li>Junior Web Developer at ABC Inc (2014-2016)</li>
</ul>
</body>
</html>