Hi HTML
Hi HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex Johnson - Web Developer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1em 0;
}
.container {
width: 80%;
margin: 0 auto;
padding: 2em 0;
}
.bio {
margin-bottom: 2em;
}
.contact {
margin-bottom: 2em;
}
.contact a {
color: #4CAF50;
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
.footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<div class="header">
<h1>Alex Johnson</h1>
<h2>Web Developer</h2>
</div>
<div class="container">
<div class="bio">
<h3>About Me</h3>
<p>Alex Johnson is a passionate web developer with over 5 years of experience in creating dynamic and user-friendly websites. Alex
specializes in front-end development and has a keen eye for design. In their free time, Alex enjoys hiking, photography, and contributing to open-
source projects.</p>
</div>
<div class="contact">
<h3>Contact Information</h3>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>LinkedIn: <a href="https://linkedin.com/in/alexjohnson" target="_blank">linkedin.com/in/alexjohnson</a></p>
<p>GitHub: <a href="https://github.com/alexjohnson" target="_blank">github.com/alexjohnson</a></p>
<p>Twitter: <a href="https://twitter.com/alexdev" target="_blank">twitter.com/alexdev</a></p>
</div>
</div>
<div class="footer">
<p>© 2024 Alex Johnson. All rights reserved.</p>
</div>
</body>
</html>