Finished introduction.

This commit is contained in:
eworc778 2025-08-09 18:04:09 +01:00
parent 1f067e5a30
commit a335a369b1
2 changed files with 26 additions and 4 deletions

View File

@ -15,6 +15,14 @@
<img src="img/me.png" class="profile-picture"> <img src="img/me.png" class="profile-picture">
<p>Hey, I'm Eworc.</p> <h3>Hey! I'm Eworc.</h3>
<p>I write code, and listen to CDs :)</p>
</div>
<div class="centered-div">
<p>Here's some of the programs that I have written:</p>
</div> </div>

View File

@ -3,10 +3,11 @@
body { body {
background-color: #1a1b26; background-color: #1a1b26;
} }
p { p, h1, h2, h3, h4 {
font-family: Google Sans Code; font-family: Google Sans Code;
color: #1a1b26; color: #1a1b26;
font-weight: normal;
} }
@ -23,6 +24,19 @@ p {
} }
.centered-div{
margin-left: auto;
margin-right: auto;
max-width: 50%;
text-align: center;
border-radius: 10px;
padding: 10px;
margin-top: 5%;
}
.profile-picture{ .profile-picture{