2023-12-07 16:34:09 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>MTRUWSaDMfHTML5</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="stylesheet" href="/styles/normal.css" />
|
2023-12-21 06:59:22 +00:00
|
|
|
<link rel="stylesheet" href="/styles/style.css" />
|
2023-12-07 16:34:09 +00:00
|
|
|
<link rel="stylesheet" href="/styles/windows.css" />
|
|
|
|
<link rel="stylesheet" href="./styles/endplorer.css" />
|
|
|
|
<style>
|
|
|
|
:root {
|
2023-12-21 06:23:50 +00:00
|
|
|
--base-color: 0, 0%;
|
2023-12-07 16:34:09 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<$ loader.html $>
|
|
|
|
<header>
|
|
|
|
<section>
|
|
|
|
<h1>MTRUWSaDMfHTML5</h1>
|
|
|
|
</section>
|
|
|
|
<section id="accessibility" hidden></section>
|
|
|
|
</header>
|
|
|
|
<section>
|
|
|
|
<button
|
|
|
|
onclick="window.top.manager.createWindow('./pages/welcome.html', false)"
|
|
|
|
>
|
|
|
|
Test</button
|
|
|
|
><br />
|
|
|
|
<input id="url" type="url" />
|
|
|
|
<button
|
|
|
|
onclick="window.top.manager.createWindow(document.querySelector('#url').value, false)"
|
|
|
|
>
|
|
|
|
Open URL
|
|
|
|
</button>
|
|
|
|
</section>
|
|
|
|
<div id="WindowHolder"></div>
|
|
|
|
<script src="./scripts/endplorer.js"></script>
|
|
|
|
<script src="/scripts/windows.js"></script>
|
|
|
|
<script src="/scripts/accessibility.js"></script>
|
|
|
|
<script src="/scripts/interface.js"></script>
|
|
|
|
<script>
|
|
|
|
window.manager = new WindowManager(
|
|
|
|
document.getElementById("WindowHolder")
|
|
|
|
);
|
|
|
|
window.taskbar = new TaskbarObject(window.top.manager);
|
|
|
|
window.top.manager.createWindow("./pages/welcome.html", false);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|