-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.14 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head lang="en">
<link rel="stylesheet" type="text/css" href="/src/style.css">
<meta charset="utf-8">
<title>DevDynasty</title>
<style>
body { margin: 0; }
</style>
<!--
Import map is not available in all browsers.
This is necessary to serve the three path so that other imports can access it.
-->
<script type="importmap">
{
"imports": {
"three": "./node_modules/three/build/three.module.js"
}
}
</script>
</head>
<body>
<div class="content">
<div class="welcome-container">
<div class="title">
<h1 class="typed">DevDynasty: Full-Stack Ascent</h1>
</div>
<div class="description">
<p>Play as a computer science major applying</p>
<p>for a full-stack developer internship! Will you get the offer?!</p>
</div>
<div class="start-button-container">
<button type="button" id="begin-button">Begin</button>
</div>
</div>
</div>
<!-- Canvas is necessary to hold a scene -->
<canvas id="background"></canvas>
<script type="module" src="/src/main.js"></script>
</body>
</html>