Skip to content

Commit 5d3bc76

Browse files
authored
glorp index
oh yeaaaaaah
1 parent 7a71205 commit 5d3bc76

1 file changed

Lines changed: 103 additions & 0 deletions

File tree

glorp/index.html

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>glorp</title>
5+
<link rel="icon" type="image/ico" href="favicon.ico">
6+
7+
<style>
8+
body {
9+
background: #66ccff;
10+
color: #000066;
11+
font-family: "Comic Sans MS", cursive;
12+
text-align: center;
13+
}
14+
15+
h1 {
16+
color: #00aa00;
17+
font-size: 4em;
18+
}
19+
20+
.box {
21+
background: white;
22+
border: 4px solid #00aa00;
23+
width: 500px;
24+
margin: auto;
25+
padding: 20px;
26+
}
27+
28+
.counter {
29+
font-family: monospace;
30+
background: black;
31+
color: lime;
32+
display: inline-block;
33+
padding: 5px;
34+
}
35+
36+
.badge {
37+
margin-top: 20px;
38+
border: 2px solid black;
39+
display: inline-block;
40+
padding: 5px;
41+
background: silver;
42+
}
43+
</style>
44+
</head>
45+
46+
<body>
47+
48+
<marquee scrollamount="10">
49+
breaking news: glorp rules the world and the universe and lives in your walls and makes stuff and uhh things too and also stuff and did i mention things?
50+
</marquee>
51+
52+
<h1>gl0rp</h1>
53+
54+
<div class="box">
55+
<p>it is i, glorp.</p>
56+
57+
<button
58+
type="button"
59+
onclick="alert('why would you do that')">
60+
dont click here
61+
</button>
62+
63+
<br><br>
64+
65+
<p>certified silly goober</p>
66+
67+
<br><br>
68+
<img src="https://visitor-badge.laobi.icu/badge?page_id=glorp.website"
69+
alt="visitor counter">
70+
<br><br>
71+
72+
<br><br>
73+
<p>glorp says:</p>
74+
<p id="quote"></p>
75+
76+
<script>
77+
const quotes = [
78+
"im watching you",
79+
"henlo",
80+
"tonight we zteal... da mooon!!1",
81+
"be nice to birbz",
82+
"itz not a good idea to die",
83+
"im zo gud at being teh ruler"
84+
];
85+
86+
document.getElementById("quote").innerText =
87+
quotes[Math.floor(Math.random() * quotes.length)];
88+
</script>
89+
<br><br>
90+
91+
<img src="glorp.ico" alt="glorp">
92+
93+
<p>
94+
glorp dorp
95+
</p>
96+
</div>
97+
98+
<div class="badge">
99+
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
100+
</div>
101+
102+
</body>
103+
</html>

0 commit comments

Comments
 (0)