feat: added a picture of my avatar

This commit is contained in:
Marlow Alfonso 2024-02-08 03:06:43 +00:00
parent 70fa324613
commit 5fff8f3c0a
3 changed files with 8 additions and 1 deletions

BIN
assets/images/avatar.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View File

@ -9,6 +9,7 @@
<body>
<div class="card">
<h1>Welcome to <span id="title">Wiikifox's den</span></h1>
<img id="avatar" src="./assets/images/avatar.png" alt="avatar">
<i>A small place to relax in the internet</i>
<div>
<h2>Who am I?</h2>

View File

@ -35,9 +35,15 @@
right: 0;
}
#avatar {
width: 256px;
float: right;
border-radius: 8px;
}
.card {
background-color: #544e68;
border-radius: 10px;
border-radius: 8px;
padding: 1rem;
margin: 0.5rem;
}