noololly.hackclub.app/index.html

54 lines
1.2 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;
margin-top: 20;
}
.heading {
color: #ec9df5;
font-size: 32px;
margin: 0;
}
.image {
vertical-align: left;
height: 50px;
margin-left: 20px;
margin-right: 25px;
}
/* Body CSS */
.body_container {
margin-top: 50px;
margin-left: 50px;
color: white;
font-size: 20px;
}
</style>
<div class="heading_container">
<img class="image" src="pfp.jpg" alt="Noololly's profile picture"/>
<p class="heading">Welcome to Noololly's site</p>
</div>
</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-03 17:13:44 +00:00
All are welcome here, so feel free to make yourself comfortable in my 2 webpages
</span>
</div>
</body>
2025-01-03 17:32:24 +00:00
</html>