-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (59 loc) · 1.67 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>Kweshuus's home</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;
font-size: 100%; /* Resetting font size */
}
/* Centering only h1 and p elements */
div > h1,
div > p {
text-align: center;
font-size: 200%; /* Making h1 and p text 200% larger */
}
/* Aligning "Even more Me" heading to the right */
.header-container {
display: flex;
justify-content: space-between;
}
/* Making h2 text 200% larger */
h2 {
font-size: 200%;
}
/* Making link text 200% larger */
a {
font-size: 200%;
}
/* Aligning "Even more Me" section to the right */
.even-more-me {
text-align: right;
}
</style>
</head>
<body>
<div>
<h1>Welcome to my page</h1>
<p>Hello, My name is kweshuu. Welcome to my hellhole of a website :3</p>
</div>
<!-- Headings container with flex layout -->
<div class="header-container">
<div>
<!-- Links to other webpages -->
<h2>The Links</h2>
<a href="./friends.html">Friends Pages<br></a>
<a href="./tnt.html">The Blog<br></a>
<a href="./aboutme.html">About me<br></a>
</div>
<div class="even-more-me"> <!-- Aligning to the right -->
<!-- links to me outside of this website -->
<h2>Even more Me</h2>
<a href="https://www.twitter.com/kweshuu">Twitter<br></a>
<a href="https://www.youtube.com/channel/UCcnxeBIZEkcofNih_A9QSjQ">Youtube<br></a>
</div>
</div>
</body>
</html>