This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfoundingpeople.html
150 lines (143 loc) · 4.76 KB
/
foundingpeople.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A place for Freakybob.">
<meta content="Freakybob" property="og:title" />
<meta content="The founders of Freakybob.site... How cool!" property="og:description" />
<meta content="https://freakybob.site/foundingpeople" property="og:url" />
<meta content="https://github.com/5quirre1/Freakybob.site/blob/main/Snapshots/Screenshot%202024-08-29%2012.38.20%20AM.png" property="og:image" />
<meta content="#006b79" data-react-helmet="true" name="theme-color" />
<link rel="icon" type="image/png" href="images/Freaky_Bob_founding.png">
<title>Others</title>
<style>
body {
background-color: #ADD8E6;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
color: #333;
text-align: center;
margin: 20px;
}
.button-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}
.button-container button {
background: none;
border: 2px solid #555;
color: #555;
font-size: 18px;
cursor: pointer;
padding: 10px 20px;
border-radius: 5px;
transition: color 0.3s, background-color 0.3s;
margin: 5px;
}
.button-container button:hover {
color: #ffffff;
background-color: rgb(191, 26, 224);
}
.contributors {
text-align: center;
margin-top: 30px;
}
.contributors button {
background-color: #9fd4f8;
border: none;
color: #070004;
font-size: 20px;
cursor: pointer;
padding: 10px;
margin: 5px;
}
.contributors button:hover {
color: #fdfdf9;
}
.description {
text-align: center;
margin: 20px;
font-size: 18px;
color: #1446fb;
}
.image-container {
text-align: center;
margin: 20px;
}
.image-container img {
width: 150px;
height: auto;
border-radius: 50%;
}
audio {
display: none;
}
@media (max-width: 600px) {
.button-container button {
font-size: 16px;
padding: 8px 16px;
}
.contributors button {
font-size: 18px;
}
.description {
font-size: 16px;
}
.image-container img {
width: 120px;
}
}
</style>
</head>
<body>
<h1>The main people who helped make freakybob.site a real thing!</h1>
<audio
src="audio/Carefree(chosic.com).mp3"
loop
autoplay>
</audio>
<div class="button-container">
<a href="https://freakybob.site">
<button>Go back to Main Website :3</button>
</a>
<a href="people.html">
<button>Check out some other people!</button>
</a>
</div>
<div class="contributors">
<button onclick="showInfo('Squirrel')">Squirrel</button>
<button onclick="showInfo('Wish')">Wish</button>
<button onclick="showInfo('Hater')">#2 Twitter Hater</button>
</div>
<div id="description" class="description"></div>
<div class="image-container" id="person-image" style="display: none;">
<img id="image" alt="Person Image">
</div>
<script>
function showInfo(name) {
const descriptions = {
'Squirrel': 'Squirrel bought the domain and does most of all the coding! Silly boykisser :3 ',
'Wish': 'Wish is a main developer for the website and made it so the music gallery can live on!',
'Hater': '#2 Twitter Hater helped with giving all sorts of spongebob images!',
};
const images = {
'Squirrel': 'images/pfps/Boykisser Squirrel.png',
'Wish': 'images/pfps/wish.png',
'Hater': 'images/pfps/twitterhater.webp',
};
const descriptionDiv = document.getElementById('description');
const personImage = document.getElementById('person-image');
const image = document.getElementById('image');
descriptionDiv.innerText = descriptions[name] || 'Information not available.';
image.src = images[name] || '';
personImage.style.display = (name in images) ? 'block' : 'none';
}
</script>
</body>
</html>