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
40 changes: 40 additions & 0 deletions hello-anadi.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello Hacktoberfest!</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #e3f2fd;
color: #0d47a1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 3em;
color: #d84315;
}
p {
font-size: 1.5em;
color: #1b5e20;
}
.badge {
margin-top: 20px;
padding: 10px 20px;
background-color: #ff9800;
border-radius: 20px;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Hello from Anadi πŸ‘‹</h1>
<p>Excited to contribute to Hacktoberfest 2024 πŸŽ‰</p>
<div class="badge">#OpenSource #Hacktoberfest</div>
</body>
</html>
Loading