-
Notifications
You must be signed in to change notification settings - Fork 6
/
privateBrowser.html
67 lines (67 loc) · 2.58 KB
/
privateBrowser.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
<title>My Projects</title>
<link rel='icon' href="images/favicon/favicon.ico" />
<!--New Snow theme stuff-->
<script src="/awsome-webdev/scripts/snowstorm.js"></script>
<script>
//Snow storm settings
snowStorm.snowColor = '#ffffff';
snowStorm.flakesMaxActive = 5000;
snowStorm.useTwinkleEffect = true;
//snowStorm.flakeBottom = null;
snowStorm.snowStick = true;
snowStorm.vMaxX = 2;
snowStorm.vMaxY = 10;
</script>
<!--End Snow storm/new theme-->
</head>
<body>
<div class='box'>
<h1 class='title'>My Projects</h1>
</div>
<div class="nav-container">
<nav>
<a href='index.html'><button id="navBar">Home</button></a>
<a href='games.html'><button id="navBar">Games</button></a>
<a href='movies.html'><button id="navBar">Movies</button></a>
<a href='proxies.html'><button id="navBar">Proxies</button></a>
<a href='hacks.html'><button id="navBar">Hacks</button></a>
<a href='credits.html'><button id="navBar">Credits</button></a>
<a href='update-log.html'><button id="navBar">Updates</button></a>
<a href='privateBrowser.html'><button id="navBar">My Other Projects</button></a>
</nav>
</div>
<div class='box'>
<iframe class='frame' src="https://bcrhbrhcdb.github.io/javascript-projects/" title="my-projects" id="screen" allowfullscreen></iframe>
<a href="https://bcrhbrhcdb.github.io/javascript-projects/"><button class="allButton">Link to the site</button></a>
</div>
<!--stat counter stuff
11/21/24
-->
<!-- Default Statcounter code for nub
https://bcrhbrhcdb.github.io/Nooby/ -->
<script type="text/javascript">
var sc_project=13058758;
var sc_invisible=1;
var sc_security="7ddedbc6";
</script>
<script type="text/javascript"
src="https://www.statcounter.com/counter/counter.js"
async></script>
<noscript><div class="statcounter"><a title="Web Analytics"
href="https://statcounter.com/" target="_blank"><img
class="statcounter"
src="https://c.statcounter.com/13058758/0/7ddedbc6/1/"
alt="Web Analytics"
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
<!-- End of Statcounter Code -->
<script src="javascript/gameData.js"></script>
<script src='javascript/script.js'></script>
<script src='javascript/announcement.js'></script>
</body>
</html>