Text
Text
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Austin's Personal Webpage</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f0f0f0;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 20px 0;
text-align: center;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.bio, .portfolio {
background: white;
margin: 20px 0;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
.bio p, .portfolio p {
line-height: 1.6;
}
.portfolio a {
color: #007bff;
text-decoration: none;
}
.portfolio a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Austin's Personal Webpage</h1>
</header>
<div class="container">
<section class="bio">
<h2>About Me</h2>
<p>My name is Austin [Aung Yar Zar Htun], and I’m a freelancer. I also
work at Chigo and manage a rock band named Alcosics music band. Despite a tough
childhood, I have become a successful creator on my own Vlog. I love watching
movies and listening to various music genres.</p>
</section>
<section class="portfolio">
<h2>Portfolio</h2>
<p>I’m a video editor and content creator. You can check out my work
here:</p>
<p><a href="https://drive.google.com/drive/folders/14HO2Q-
SoGSbfnNTLlpc0SULeCdg5M3ok?usp=drive_link" target="_blank">My Portfolio</a></p>
</section>
</div>
</body>
</html>