-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (85 loc) · 3.54 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="corporate-greed">I know this makes me sound like some big corp trying to track you, but please enable JavaScript so that this webpage can function correctly.</div>
<h1>fishy's page ig</h1>
<p><i>this page is a huge wip, of course it's going to look really trash</i></p>
<hr>
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'About')" id="defaultOpen">About</button>
<button class="tablinks" onclick="openCity(event, 'Stuff')">Stuff</button>
<button class="tablinks" onclick="openCity(event, 'Accounts')">Accounts</button>
</div>
<!-- Tab content -->
<div id="About" class="tabcontent">
<h3>about</h3>
<ul>
<li>he/him (they/them is ok)</li>
<li>Languages: (* = not fluent)
<ul>
<li>English (preferred)</li>
<li>Chinese (Cantonese, Putonghua)</li>
<li>Portuguese (Brazilian)*</li>
<li>toki pona*</li>
</ul>
</li>
</ul>
</div>
<div id="Stuff" class="tabcontent">
<h3>stuff</h3>
<div class="rectangle" onclick="location.href = 'https://fishlandicfishy.github.io/lexicring/';">
<h2>lexicring</h2>
<p>Archival, Documentation, Dictionary</p>
</div>
<div class="rectangle" onclick="location.href = 'https://fishlandicfishy.github.io/htmlTest/';">
<h2>htmlTest</h2>
<p>Ancient HTML Test</p>
</div>
<div class="rectangle" onclick="location.href = 'https://fishlandicfishy.github.io/thai-phone/';">
<h2>Thai Phone</h2>
<p>The Thai Phone Project</p>
</div>
<div class="rectangle" onclick="location.href = 'https://lingojam.com/BrainrotSkibidiLanguage';">
<h2>Brainrot Skibidi Language Translator</h2>
<p>(LingoJam) Gen Alpha translator</p>
</div>
</div>
<div id="Accounts" class="tabcontent">
<h3>accounts</h3>
<ul>
<li><a href="https://youtube.com/@fishlandicfishy" style="color:#FF0000;">YouTube</a></li>
<li><a href="https://github.com/FishlandicFishy" style="color:#FFFFFF;">GitHub</a></li>
<li><a href="https://scratch.mit.edu/users/FishlandicFishy/" style="color:#FFAA00;">Scratch</a> (oh no cringe)</li>
<li><a href="https://www.nationstates.net/nation=nowhere_2_eletric_sic_boogaloo" style="color:#AA0000;">NationStates</a> (inactive)</li>
<li><a href="https://medium.com/@fishdoesmc123" style="color:#FFFFFF;">Medium</a> idk</li>
</div>
<img src="https://github.com/FishlandicFishy/FishlandicFishy/raw/main/quote.svg" alt="🦊 Como as lendas dizem, o meu guitarrista é furry. 🦊">
<hr>
<p><i>Content licensed under CC0 where possible. (Code is not written by me.)</i></p>
<hr>
<script>
document.getElementById('corporate-greed').parentNode.removeChild(document.getElementById('corporate-greed'));
function openCity(evt, cityName) {
// Declare all variables
var i, tabcontent, tablinks;
// Get all elements with class="tabcontent" and hide them
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
// Get all elements with class="tablinks" and remove the class "active"
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
// Show the current tab, and add an "active" class to the button that opened the tab
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
document.getElementById("defaultOpen").click();
</script>
</body>
</html>