Skip to content

Commit

Permalink
slay
Browse files Browse the repository at this point in the history
  • Loading branch information
irenayli committed Jan 6, 2024
1 parent b7e69c0 commit e588fb2
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 2 deletions.
17 changes: 15 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
<html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>irena</title>
</head>

<body>
<h1>irena</h1>
<header>
<h1>irena</h1>
</header>

<footer>
<p>last updated: jan 2024</p>
</footer>
</body>

</html>
41 changes: 41 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
body {
font-family: 'Courier', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}

header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}

h1 {
margin: 0;
}

.about,
.skills,
.contact {
max-width: 600px;
margin: 20px auto;
}

section {
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
margin-bottom: 20px;
}

footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}

0 comments on commit e588fb2

Please sign in to comment.