-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.38 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>marcuslane.com</title>
<meta
name="description"
content="Experience my Portfolio Showcase Game, a dynamic fusion of frontend development and gaming, showcasing my skills and projects in an interactive adventure. Utilizing Svelte, JavaScript, CSS, HTML, and Kaboom.js, navigate through levels to explore different aspects of my portfolio and enjoy a fresh take on resume presentation."
/>
<link rel="icon" type="image/png" href="/favicon.ico" />
<link rel="stylesheet" href="/src/styles.css" />
</head>
<body>
<main>
<div id="webgl-warning">
<h2>⚠️ WebGL is Disabled</h2>
<p>Your browser has WebGL disabled or does not support it.</p>
<p>Please enable hardware acceleration in your browser settings.</p>
</div>
<div id="ui">
<p class="note">Tap/Click around to move</p>
<div id="textbox-container" style="display: none">
<div id="textbox">
<p id="dialogue" class="ui-text"></p>
<div class="button-container">
<button id="close" type="button">Close</button>
</div>
</div>
</div>
</div>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>