[CODER] Add basic HTML file with content #35

Merged
sam merged 1 commits from feature/issue-31 into main 2026-07-22 21:14:27 +00:00
Showing only changes of commit c004e1296b - Show all commits

34
index.html Normal file
View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>We did it!</title>
<style>
/* Simple, clean centered layout */
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f4f8;
font-family: Georgia, serif;
}
h1 {
font-size: 3rem;
color: #1a202c;
letter-spacing: 0.05em;
text-align: center;
padding: 2rem 3rem;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<h1>We did it, Sam!</h1>
</body>
</html>