Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions home_pamithra.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to My Homepage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
line-height: 1.6;
}
header {
text-align: center;
padding: 20px;
background-color: #f0f0f0;
}
.content {
max-width: 800px;
margin: 0 auto;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Homepage</h1>
</header>

<div class="content">
<h2>About Me</h2>
<p>Hello! This is my personal homepage. Feel free to explore and learn more about me.</p>

<h2>My Interests</h2>
<ul>
<li>Web Development</li>
<li>Programming</li>
<li>Technology</li>
</ul>
</div>
</body>
</html>