-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdvd.html
More file actions
42 lines (36 loc) · 1.25 KB
/
dvd.html
File metadata and controls
42 lines (36 loc) · 1.25 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
37
38
39
40
41
42
<html>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/7784/7784482.png">
<title>Utilities - DVD Screensaver - The HTML Project</title>
<h1>DVD Screensaver</h1>
<marquee behavior="scroll" style="background-color: yellow;" direction="left">Press fullscreen to make this bigger</marquee>
<iframe id="myFrame" src="https://remarkablemark.org/Bouncing-DVD-Logo/" width="100%" height="700"></iframe>
<div align="center" scrolling="none" style="padding-top:30px; padding-bottom:20px">
<button onclick="location.href='dvdfull.html'" type="button">Fullscreen
</button>
<button onclick="location.reload()" type="button">Fix Bug
</button>
<head>
<style>
.footer {
position: right;
left: 0;
bottom: 0;
width: 100%;
background-color: grey;
color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="footer">
<p><a href="dashboard.html" style="color: white;">Back to Dashboard</a></p>
<p><a href="/home/index.html" style="color: white;">Back to NEW Dashboard</a></p>
</div>
<script type="text/javascript">
window.onresize = function() {
location.reload();
}
</script>
</body>
</html>