-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraywindow.html
27 lines (27 loc) · 1.34 KB
/
graywindow.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/window.css">
<title>Blue Window</title>
</head>
<body style="background-color:#b6a888;">
<main>
<img src="./images/graywindow/LEFT.png" class="display left" alt="" />
<img src="./images/graywindow/RIGHT.png" class="display right" alt="" />
<img src="./images/graywindow/BOTTOM.png" class="display bottom" alt="" />
<img src="./images/graywindow/TOP.png" class="display top" alt="" />
<img src="./images/graywindow/BOTTOMLEFT.png" class="display bottomleft" alt="" />
<img src="./images/graywindow/BOTTOMRIGHT.png" class="display bottomright" alt="" />
<img src="./images/graywindow/TOPLEFT.png" class="display topleft" alt="" />
<img src="./images/graywindow/TOPRIGHT.png" class="display topright" alt="" />
<p class="press-start-2p-regular display" id="title_text">Enable Javascript</p>
<iframe src="html/putthejsinbrowser.html" id="innerframe" ></iframe>
</main>
<script type="text/javascript">
let params = new URLSearchParams(location.search);
document.getElementById("title_text").innerHTML = params.get('title')
document.getElementById("innerframe").src = params.get('page')
</script>
</html>