-
Notifications
You must be signed in to change notification settings - Fork 0
/
friends.html
40 lines (40 loc) · 1.33 KB
/
friends.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
<!DOCTYPE html>
<html>
<head>
<title>My Friends</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;
text-align: center; /* Aligning text to the center */
font-size: 200%; /* Enlarging text to 200% */
position: relative; /* Adding relative positioning to the body */
font-family: Arial, sans-serif; /* Setting font family to Arial */
}
div {
margin: auto; /* Centering the div */
width: 50%; /* Adjust the width of the div */
}
/* Styling for the "b a c k" button */
.top-right-link {
position: absolute;
top: 20px;
right: 20px;
font-size: 1.5em;
}
</style>
</head>
<body>
<div>
<h2>Here are some of the pages my friends have made</h2> <!-- Corrected closing tag for heading -->
<p>Go check them out<br></p>
<a href="http://autumnprojects.duckdns.org/" target="_blank">Autumn's page<br></a>
<a href="https://superanai.neocities.org/" target="_blank">Gary's page</a>
</div>
<!-- Adding the "b a c k" button -->
<div class="top-right-link">
<a href="https://kweshuu.github.io/" style="position:absolute;top:20px;right:20px;">b a c k</a>
</div>
</body>
</html>