-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgalaxy.html
More file actions
54 lines (48 loc) · 2.06 KB
/
galaxy.html
File metadata and controls
54 lines (48 loc) · 2.06 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
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beyond Words</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="muitoestilo.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="icon" href="/icon.ico" type="image/x-icon">
<script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.150.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.150.0/examples/jsm/"
}
}
</script>
</head>
<body>
<header>
<div class="nav">
<a href="index.html" class="logo">Beyond Words</a>
<ul class="side-menu">
<li><a href="index.html" class="menu-link">Home</a></li>
<li><a href="#" class="menu-link">3D vision</a></li>
<li><a href="pitch.html" class="menu-link">Pitch</a></li>
<li><a href="references.html" class="menu-link">References</a></li>
<li><a href="statistics.html" class="menu-link">Statistic</a></li>
<li><a href="makingof.html" class="menu-link">Making Of</a></li>
<li><a href="team.html" class="menu-link">Team</a></li>
</ul>
<div class="menu-icon">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
</header>
<canvas id="canvas" data-engine="three.js r146"></canvas>
<!-- I had to put in a random value to open this canvas ad hoc -->
<input type="text" id="fourInput" value="BECAUSE I DUNNO HOW TO CODE xD" hidden>
<script src="3D/main.js" type="module" async defer></script>
<script src="3D/script.js" type="module"></script>
<script src="sketch.js" type="module"></script>
</body>
</html>