-
Notifications
You must be signed in to change notification settings - Fork 0
/
catmeoowwProjects.html
94 lines (89 loc) · 5.83 KB
/
catmeoowwProjects.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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<title>CatMeooww10 Projects</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="Icons/CatMeooww.jpg" type="image/png">
</head>
<body background="Icons/StoneBg.png">
<div class="menu">
<a href="index.html">CatMeooww10 Page</a>
<span>|</span>
<a href="about.html">About CatMeooww10</a>
</div>
<hr>
<div class="titlecontainer">
<h1 class="title">CATMEOOWW10 WEB PROJECTS!</h1>
</div>
<hr>
<center>
<a title="Crafty Hub" href="https://catmeooww.github.io/Crafty-Hub/"><img
src="otherSites/CraftyForums.png" class="MCSites" width="300" height="200"></a>
<a title="Minecraft Builders Blog" href="https://catmeooww.github.io/Minecraft-Builder-Blog/"><img
src="otherSites/BuildersBlog Background.png" class="MCSites" width="300"
height="200"></a>
<a title="Minecraft World News" href="https://catmeooww.github.io/The-Minecraft-World-News/"><img
src="otherSites/Minecraft World Background.png" class="MCSites" width="300"
height="200"></a>
<a title="Minecraft World Community" href="https://catmeooww.github.io/MinecraftWorldCommunity/"><img
src="otherSites/Minecraft Community Background.jpg" class="MCSites" width="300"
height="200"></a>
<a title="GameCord" href="https://catmeooww.github.io/GameCord/"><img src="otherSites/GameCordBg.png"
class="MCSites" width="300" height="200"></a>
<a title="Minecraft Filter" href="https://catmeooww.github.io/Minecraft-Filter/"><img
src="otherSites/Mobs.png" class="MCSites" width="300" height="200"></a>
<a title="Minecraft Listing" href="https://catmeooww.github.io/Minecraft-Listing/"><img
src="otherSites/Minecraft Listing Background.jpg" class="MCSites" width="300"
height="200"></a>
<a title="Minecraft Utilities" href="https://catmeooww.github.io/Minecraft-Utilities/"><img
src="otherSites/MC-Utilities_bg.jpg" class="MCSites" width="300" height="200"></a>
<a title="Index Dev" href="https://catmeooww.github.io/Index-Dev/projects.html"><img
src="otherSites/IndexDevBg.png" class="MCSites" width="300"
height="200"></a>
<a title="Minecraftpédia" href="https://catmeooww.github.io/MinecraftPedia/"><img
src="otherSites/Minecraftpedia Background.jpg" class="MCSites" width="300"
height="200"></a>
<a title="Crafty World" href="https://www.curseforge.com/minecraft/mc-mods/crafty-world"><img
src="otherSites/crafty_world_bg.png" class="MCSites" width="300" height="200"></a>
<a title="Minecraft Ai" href="https://catmeooww.github.io/MinecraftAi/"><img
src="otherSites/aicraft_bg.png" class="MCSites" width="300" height="200"></a>
</center>
<br><br>
<div class="titlecontainer">
<h1 class="title">CATMEOOWW10 GAMES</h1>
</div>
<hr>
<div
style="border: inset 2px green;text-align: center;width: 90%;margin:5%;background-color: black;padding: 10px;">
<a href="https://catmeooww.github.io/CatMeooww-GamingArea/">View CatMeooww Games Page!</a>
<button onclick="showGames()" id="showGames"
style="float: right;background-color: black;color: green;">+</button>
</div>
<div id="showingGames" style="text-align: center;visibility: hidden;">
</div>
<hr>
<b id="catlabel" style="float: right;">@CatMeooww</b>
<script>
r = Math.floor(Math.random() * 230) + 25;
g = Math.floor(Math.random() * 230) + 25;
b = Math.floor(Math.random() * 230) + 25;
document.getElementById("catlabel").style.color = "rgb(" + r + "," + g + "," + b + ")";
function showGames() {
visible = document.getElementById("showingGames").style.visibility;
if (visible == "hidden") {
document.getElementById("showingGames").innerHTML = "<iframe style='border: goldenrod inset 2px;width: 85%;height: 300px;' src='https://catmeooww.github.io/CatMeooww-GamingArea/index.html#gameBox'></iframe>";
document.getElementById("showingGames").style.visibility = "visible";
document.getElementById("showGames").innerHTML = "-";
} else {
document.getElementById("showingGames").innerHTML = "";
document.getElementById("showingGames").style.visibility = "hidden";
document.getElementById("showGames").innerHTML = "+";
}
}
</script>
</body>
</html>