-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (80 loc) · 2.16 KB
/
index.html
File metadata and controls
88 lines (80 loc) · 2.16 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>GhostWeb</title>
<style>
body {
background-image: url('Files/gradient.jpeg');
background-size: cover;
background-repeat: no-repeat;
font-family: Arial, sans-serif;
margin: 0;
color: white;
}
header {
text-align: center;
padding: 20px;
background-color: rgba(0, 0, 0, 0.5);
width: 60%;
margin: 20px auto;
border: 1px solid white;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
nav {
display: flex;
justify-content: center;
margin-top: 10px;
}
nav a {
text-decoration: none;
color: white;
padding: 10px 20px;
border: 1px solid white;
margin: 0 10px;
transition: background-color 0.3s, color 0.3s;
}
nav a:hover {
background-color: rgba(255, 255, 255, 0.2);
color: black;
}
footer {
text-align: center;
padding: 10px;
margin-top: 20px;
/* Removed background-color */
}
footer img {
width: 100px;
height: auto;
margin: 0 5px;
}
footer a {
text-decoration: none;
color: lightblue;
}
</style>
</head>
<body>
<header>
<h1>Welcome to GhostWeb</h1>
<nav>
<a href="index.html">Home</a>
<a href="gallery.html">Gallery</a>
<a href="#">Contact</a>
</nav>
<p>Hi im ghost this is my frist website. With this website im trying to make a modern geocities theme for this website.</p>
<p>This website is still under construction github fucked up and now the gallery page dose not work.
<p> All the code for this website is on my github</p>
<p>last updated 12/30/24</p>
</header>
<footer>
<p>Cool images and links.</p>
<img src="Files/flag-bi.png" alt="flag-bi">
<img src="Files/chrome_evil.gif" alt="chrome_evil">
<a href="https://www.mozilla.org/en-US/firefox/"><img src="Files/ffox.webp" alt="Firefox"></a>
<img src="Files/phonechump.gif" alt="phonechump">
<a href="https://github.com/GhostBlackout"><img src="Files/github.png" alt="Github"></a>
<img src="Files/made_on_linux.gif" alt="made_on_linux">
</footer>
</body>
</html>