26 lines
753 B
HTML
26 lines
753 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/satellite.png" />
|
|
<link rel="stylesheet" href="./src/style.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Kerbal calculations</title>
|
|
</head>
|
|
<body>
|
|
<h1>Kerbal calculations</h1>
|
|
<h3>Current time in game:</h3>
|
|
<div id="timesDiv"></div>
|
|
<h3>Time to periapsis:</h3>
|
|
<div id="periapsisDiv"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<h3>Planet:</h3>
|
|
<div id="planetsDiv"></div>
|
|
<h3>Orbital parameters:</h3>
|
|
<div id="orbitalParametersDiv"></div>
|
|
<h3>What to calculate:</h3>
|
|
<div id="calculationChoice"></div>
|
|
<div id="calculation"></div>
|
|
</body>
|
|
</html>
|