Skip to content

Commit

Permalink
updated bala
Browse files Browse the repository at this point in the history
  • Loading branch information
bipulbala committed Aug 3, 2024
1 parent 87fb048 commit bc6f331
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions bala.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Static Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
main {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Static Webpage</h1>
</header>
<main>
<h2>About Me</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.</p>
<h2>My Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<h2>Get in Touch</h2>
<p><a href="mailto:example@example.com">example@example.com</a></p>
</main>
</body>
</html>

0 comments on commit bc6f331

Please sign in to comment.