-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 3.12 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
<!DOCTYPE html>
<html>
<head>
<title>CheezyT08's Random Website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./html/css/stylesheet.css">
<link rel="icon" type="image/jpg" href="./html/img/EmeauxPic (2).jpg">
</head>
<body>
<a href="https://cheezyT08.github.io"><div class="home-button-abs"><img class="home-button-abs-img" src="./html/img/homeSymbolDone.jpg" alt="Home Symbol"></div></a>
<div style="padding: 3px;" width="100%" class="break"><h1 class="header">CheezyT08's <br> Random Website</h1></div>
<div class="centered" style="font-size: 1em; border: none;"><h1>Home Page</h1></div>
<img src="./html/img/GoldenRetriverPic.jpg" width="33%" style="float: right;">
<h2>Table Of Contents</h2>
<ul>
<li><a href="./html/bbal.html">Basketball Stat Keeper</a></li>
<!--<li><a href="./html/fortStatus.html">Fortnite Status</a></li>-->
<li><a href="./html/procJS_Page.html">ProccesingJS Example</a></li>
<!--<li><a href="./html/favBooks.html">My Favorite Book Series</a></li>-->
<!--<li><a href="./html/randChar.html">Random Letter Generator</a></li>-->
<!--<li><a href="./html/piano.html">Random Piano Note Generator</a></li>-->
<!--<li><a href="./html/lorem.html">Lorem Ipsum Download Page</a></li>-->
</ul>
<h1> <br> <br> <br> <br> <br></h1>
<div class="footer">
<img src="./html/img/githubSymbol.jpg" alt="Github logo" style="width: 55px; display: inline;">
<input id="nbButton" type="image" src="./html/img/netBeansSymbol.jpg" style="width: 55px; display: inline;">
<div class="devMode" id="devDivAll">
<div id="devDiv">
<input id="devIn" size="10">
<button id="devButton">Dev Mode</button>
</div>
</div>
<div class="fortButton">
<a href="./html/fortStatus.html"><button id="fB" class="fortButton">Fortnite-Page</button></a>
</div>
</div>
<script>
var nbButtonEl = document.getElementById("nbButton");
var devButtonEl = document.getElementById("devButton");
var devDivAllEl = document.getElementById("devDivAll");
var devDivEl = document.getElementById("devDiv");
var hiddenDevDivLiEl = document.getElementById("hiddenDivLi");
var fBEl = document.getElementById("fB");
fBEl.style.display = "none";
nbButtonPress = function() {
devDivAllEl.style.display = "inline";
};
devButtonPress = function() {
var devIn = document.getElementById("devIn").value;
if(devIn === "d") {
fBEl.style.display = "inline";
}
};
nbButton.addEventListener("click", nbButtonPress);
devButton.addEventListener("click", devButtonPress);
</script>
</body>
</html>