-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.19 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<title id="title">PXG MoPoTo</title>
<meta name="viewport" content="width=device-width" initial-scale="-1" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="/css/style.css" />
</head>
<body id="body">
<h3 id="title sub header">
Welcome to the PXG Motorpool Tool, also known as the MoPoTo.
</h3>
<div class="head information" style="display:flex;flex-direction: row;padding:2em;">
<button id="information">
<a href="https://github.com/TheGrinchOnMath/thegrinchonmath.github.io">How To use the MoPoTo</a>
</button>
<button id="information" style="padding-left:1%"><a href="https://perchance.org/pxg-mission-gen">Random Mission Idea Generator</a>
</button>
</div>
<p></p>
<!--
the buttonContainer div is to contain the divs for the buttons and the content, the results div contains
the results parts, to be defined.
-->
<div id="buttonContainer">
<div id="sides"></div>
<div id="factions"></div>
<div id="variants"></div>
<div id="content"></div>
<div id="resultContainer">
<div id="imageDiv"></div>
<div id="results"></div>
</div>
</div>
<script src="/js/script.js"></script>
</body>
</html>