-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (28 loc) · 1009 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (28 loc) · 1009 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Planet</title>
<link href="css/planet.css" rel="stylesheet" type="text/css"/>
<link href="css/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="img/favicon.ico" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
</head>
<body>
<script src="js/three.js"></script>
<script type="text/javascript" src="js/dat.gui.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/math.js"></script>
<script src="js/planet.js" type="module"></script>
<div class="container">
<div class="dataCard">
<div class="card text-white bg-dark bg-transparent mb-3" style="max-width: 18rem;">
<div class="card-body">
<h5 class="card-title" id="planetTitle">Mercury</h5>
<p class="card-text font-monospace" id="planetStats">Radius: 2439.4 KM</br>Distance From Sun: 0.4 AU</br>Type: Terrestrial Planet</p>
</div>
</div>
</div>
</div>
</body>
</html>