-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 856 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sistema Solar ThreeJS</title>
<link rel="stylesheet" href="./styles.css">
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<div id="canvas-container" class="animate__animated animate__fadeIn ">
<div id="start-container" class="animate__animated animate__fadeIn">
<button id="btn-start">START TRIP</button>
<div class="by">
<p>By: <a target="_blank" href="https://samuelvictorol.github.io/portfolio/">Samuel Victor</a></p>
</div>
</div>
</div>
<script type="module" src="scripts/three.js"></script>
</body>
</html>