-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.18 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" />
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="module" src="./src/main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SolarSim</title>
</head>
<body>
<div id="app">
<canvas id='ss'></canvas>
<div id="popupEditor" class="popup">
<a href="javascript:void(0);" class="closebtn" id="closer">×</a>
</div>
<div class="icon-bar" id="icon-bar">
<a class="active" href="#" title="Home"><i class="fa fa-sun-o"></i></a>
<a id="inf" title="Planet Information"><i class="fa fa-globe"></i></a>
<a id="orb" title="Edit Orbit"><i class="fa fa-pencil"></i></a>
<a id="ref" title="Reset Simulation"><i class="fa fa-refresh"></i></a>
<a id="pause" title="Pause Simulation"><i class="fa fa-pause"></i></a>
</div>
<div id="logo">
<h1>SolarSim <i class="fa fa-sun-o"></i></h1>
</div>
</div>
</body>
</html>