Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
elbdmi committed Dec 2, 2024
1 parent aa13a62 commit 1cdfb33
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eleni's Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Eleni's Website!</h1>
</header>
<main>
<p>This is my personal website, built with HTML and CSS!</p>
</main>
<footer>
<p>&copy; 2024 Eleni</p>
</footer>
</body>
</html>
28 changes: 28 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}

header {
background: #0073e6;
color: white;
padding: 1rem 0;
text-align: center;
}

footer {
background: #333;
color: white;
text-align: center;
padding: 0.5rem 0;
position: fixed;
bottom: 0;
width: 100%;
}

main {
padding: 2rem;
}

0 comments on commit 1cdfb33

Please sign in to comment.