-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
41 lines (40 loc) · 1.38 KB
/
aboutme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<style>
body {
background-image: url('https://art.teleportacia.org/observation/vernacular/stars/starry.gif'); /* Using the provided GIF */
background-repeat: repeat; /* Tiling the background */
color: white; /* Setting text color to white */
font-family: Arial, sans-serif; /* Setting font family */
margin: 0; /* Removing default margin */
padding: 20px; /* Adding padding */
font-size: 200%; /* Setting text size to 200% */
position: relative; /* Adding relative positioning to the body */
}
h2 {
text-align: center; /* Centering heading text */
}
p {
text-align: center; /* Centering paragraph text */
}
/* Styling for the "b a c k" button */
.top-right-link {
position: absolute;
top: 20px;
right: 20px;
font-size: 1.5em;
font-family: Arial, sans-serif; /* Matching font family */
}
</style>
</head>
<body>
<h2>Hi I'm Kweshuu</h2>
<p>Hello everyone, my name is Kweshuu, and this is my funny little website. I suppose this is an about me page so here goes nothing. I'm a bit of a dork, I enjoy anime, I play too many games to be heathy and I use Linux religiously. </p>
<!-- Adding the "b a c k" button -->
<div class="top-right-link">
<a href="https://kweshuu.github.io/">b a c k</a>
</div>
</body>
</html>