-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
117 lines (105 loc) · 3.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> (^^ゞ goobus.lol</title>
<style>
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
/* Center the body content */
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: black;
color: #00ff00;
}
/* Style the main container */
.container {
text-align: center;
max-width: 800px;
padding: 2em;
background: #111;
box-shadow: 0 4px 8px rgba(0, 255, 0, 0.5);
border: 2px solid #00ff00;
border-radius: 8px;
}
/* Style the main heading */
h1 {
font-size: 3em;
margin-bottom: 0.5em;
text-shadow: 0 0 8px #00ff00;
}
h2 {
font-size: 2em;
margin-bottom: 0.5em;
text-shadow: 0 0 8px #00ff00;
}
/* Style the paragraph */
p {
font-size: 1.5em;
line-height: 1.8;
margin-bottom: 0.5em;
}
/* Style the link button */
a {
display: inline-block;
padding: 0.7em 1.5em;
background: #00ff00;
color: black;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s, color 0.3s;
}
/* Change button appearance on hover */
a:hover {
background: black;
color: #00ff00;
border: 2px solid #00ff00;
}
/* Typewriter effect */
.typewriter {
position: absolute;
top: 10px;
left: 10px;
font-size: 1.2em;
color: #00ff00;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid #00ff00;
text-shadow: 0 0 8px #00ff00;
animation: typing 3s steps(25, end), blink 0.7s step-end infinite;
}
@keyframes typing {
from { width: 0; }
to { width: 20.5em; }
}
@keyframes blink {
50% { border-color: transparent; }
}
</style>
</head>
<body>
<div class="typewriter">://initializing cat photos...</div>
<div class="container">
<!-- Main website heading -->
<h1> goobus.lol </h1>
<!-- Website description -->
<p>welcome</p>
<h1>(^^ゞ</h1>
<h2>links</h2>
<!-- Navigation Links -->
<a href="about.html">about</a>
<a href="socials.html">socials</a>
<a href="gallery.html">gallery</a>
</div>
</body>
</html>