-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 992 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
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title><h1>Javascript API endpoint</h1></title>
<link href="styles.css" rel="stylesheet" />
<script src="SampleJSON.js"></script>
</head>
<body>
<div id="root">
<div>
<table id="shiptable" class="shiptable">
<thead>
<th>Name</th>
<th>Model</th>
<th>Manufacturer</th>
<th>Cost</th>
<th>Length</th>
<th>Max ATM Speed</th>
<th>Crew</th>
<th>Passengers</th>
<th>Cargo capacity</th>
<th>Consumables</th>
<th>Hyperdrive Rating</th>
<th>MGLT</th>
<th>Starship Class</th>
<th>Pilots</th>
<th>Films</th>
<th>Created</th>
<th>Edited</th>
<th>URL</th>
</thead>
</table>
</div>
</div>
</body>
<script src="javascript.js"></script>
</html>