noololly.hackclub.app/index.html
2025-01-10 19:12:45 +00:00

70 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html>
<title>Welcome to Noololly's site</title>
<head>
<style>
body {
height: 100%;
padding: 0;
margin: 0;
color: #ec9df5;
background-color: black;
}
/* Heading CSS */
.heading_container {
display: flex;
align-items: center;
margin-top: 20px;
font-family: 'Corbel';
}
.heading {
color: #ec9df5;
font-size: 32px;
margin: 0;
}
.pfp_image {
vertical-align: left;
margin-left: 20px;
margin-right: 25px;
margin-top: 20px;
}
@font-face {
font-family: 'Corbel';
src: url(corbel.ttf);
}
/* Body CSS */
.body_container {
display: grid;
margin-top: 50px;
margin-left: 50px;
color: white;
font-size: 20px;
font-family: 'Corbel';
}
.project_image {
vertical-align: left;
margin-left: 20px;
margin-right: 25px;
margin-top: 20px;
margin-bottom: 25px;
border-radius: 10%;
}
</style>
<div class="heading_container">
<img class="pfp_image" src="pfp.jpg" alt="Noololly's profile picture" height="50px" />
<p class="heading">Welcome to Noololly's site</p>
</div>
</head>
<body>
<div class="body_container">
<span style="white-space: pre-line">Hello! Welcome to my website. I have no clue what you are doing here, unless I have given you my URL for some reason or another.
All are welcome here, so feel free to make yourself comfortable in my 2 webpages
</span>
<img class="project_image" src="uno_card.png" alt="Image of an Uno card" height="250px">
<a href="https://github.com/Noololly/uno/">This is the Uno project I made</a>
</div>
</body>
</html>