noololly.hackclub.app/index.html

71 lines
1.8 KiB
HTML
Raw Normal View History

2021-12-08 19:40:13 +00:00
<!DOCTYPE html>
<html>
2025-01-03 17:13:44 +00:00
<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;
2025-01-10 19:12:45 +00:00
margin-top: 20px;
2025-01-06 09:00:42 +00:00
font-family: 'Corbel';
2025-01-03 17:13:44 +00:00
}
.heading {
color: #ec9df5;
font-size: 32px;
2025-01-06 09:00:42 +00:00
margin: 0;
2025-01-03 17:13:44 +00:00
}
2025-01-06 09:00:42 +00:00
.pfp_image {
2025-01-03 17:13:44 +00:00
vertical-align: left;
margin-left: 20px;
margin-right: 25px;
2025-01-06 09:00:42 +00:00
margin-top: 20px;
2025-01-03 17:13:44 +00:00
}
2025-01-06 09:00:42 +00:00
@font-face {
2025-01-10 19:12:45 +00:00
font-family: 'Corbel';
2025-01-06 09:00:42 +00:00
src: url(corbel.ttf);
}
2025-01-03 17:13:44 +00:00
/* Body CSS */
.body_container {
2025-01-06 09:00:42 +00:00
display: grid;
2025-01-03 17:13:44 +00:00
margin-top: 50px;
margin-left: 50px;
color: white;
font-size: 20px;
2025-01-06 09:00:42 +00:00
font-family: 'Corbel';
2025-01-03 17:13:44 +00:00
}
2025-01-06 09:00:42 +00:00
.project_image {
vertical-align: left;
margin-left: 20px;
margin-right: 25px;
margin-top: 20px;
margin-bottom: 25px;
2025-01-06 10:13:16 +00:00
border-radius: 10%;
2025-01-06 09:00:42 +00:00
}
2025-01-03 17:13:44 +00:00
</style>
2025-01-06 09:00:42 +00:00
<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>
2025-01-03 17:13:44 +00:00
</head>
<body>
<div class="body_container">
2025-01-03 17:32:24 +00:00
<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.
2025-01-06 09:00:42 +00:00
All are welcome here, so feel free to make yourself comfortable in my 2 webpages
2025-01-03 17:13:44 +00:00
</span>
2025-01-06 09:00:42 +00:00
<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>
2025-01-03 17:13:44 +00:00
</div>
</body>
2025-01-03 17:32:24 +00:00
</html>