Skip to content

Commit

Permalink
index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
harishg5 authored May 3, 2024
0 parents commit 4f669fd
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Harixx</title>
<style>
/* CSS styles can go here */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin-top: 0;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
.instagram-link {
display: inline-block;
background-color: #405DE6;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Harixx</h1>
</header>

<div class="container">
<p>Hello, I am Harixx. This is my website.</p>
<p>Follow me on Instagram:</p>
<a href="https://www.instagram.com/_.harixx/" class="instagram-link" target="_blank">Follow @_harixx</a>
</div>

<footer>
&copy; 2024 Harixx
</footer>
</body>
</html>

0 comments on commit 4f669fd

Please sign in to comment.