-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathretro.html
More file actions
36 lines (32 loc) · 1.22 KB
/
retro.html
File metadata and controls
36 lines (32 loc) · 1.22 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Retro Bowl</title>
<link rel="shortcut icon"
type="image/jpg" href="/retrobowl.png"
/>
</head>
<body>
<script>
loadTitle();
function loadTitle(){
if (localStorage.Titlesave) {
document.title = localStorage.Titlesave;
}
}
loadIcon();
function loadIcon(){
if (localStorage.Iconsave) {
function changeFavicon(src) { var link = document.createElement('link'), oldLink = document.getElementById('dynamic-favicon'); link.id = 'dynamic-favicon'; link.rel = 'shortcut icon'; link.href = src; if (oldLink) { document.head.removeChild(oldLink);
} document.head.appendChild(link);}
changeFavicon(localStorage.Iconsave);
}
}
</script>
<a href="/"
style="position:absolute;width;50px;height: 50px;left:20px;top: 50px;" >Back To Home Page</a>
<iframe title="Include gadget (iframe)" width="960" height="540"scrolling="no" frameborder="0" id="518929564" name="518929564" allowtransparency="true" class="igm" src="https://debbiewatermanphd.com/uploads/5/5/6/7/5567194/custom_themes/230188292910318641/files/rb1.html"></iframe>
<script src="fullScreen.js"></script>
<button onclick="openFullscreen('518929564')">Fullscreen Mode</button>
</body>
</html>