-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (83 loc) · 3.58 KB
/
Copy pathindex.html
File metadata and controls
87 lines (83 loc) · 3.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="3rd-party/bootstrap.min.css">
<link rel="stylesheet" href="3rd-party/leaflet.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="index/page.css">
<script defer src="3rd-party/axios.min.js"></script>
<script defer src="3rd-party/leaflet.js"></script>
<script defer src="utils/numberHandling.js"></script>
<script defer src="index/main.js"></script>
<script defer src="index/companyInfo.js"></script>
<script defer src="index/companyMap.js"></script>
<title>SpaceX Info | Index</title>
</head>
<body>
<div class="header">SpaceX Info</div>
<div class="menu">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" aria-current="page">Index</a>
</li>
<li class="nav-item">
<a class="nav-link" href="launches.html">Launches</a>
</li>
<li class="nav-item">
<a class="nav-link" href="crew.html">Crew</a>
</li>
</ul>
</div>
<div class="content">
<div class="companyInfo">
<div class="section section-primary section-description section-first">
<h5>Description</h5>
<p></p>
</div>
<div class="section section-primary section-statistics">
<h5>Statistics</h5>
<table class="table">
<tbody>
<tr>
<th scope="row">employees</th>
<td class="statistics-item statistics-employees"></td>
</tr>
<tr>
<th scope="row">vehicles</th>
<td class="statistics-item statistics-vehicles"></td>
</tr>
<tr>
<th scope="row">launch sites</th>
<td class="statistics-item statistics-launch-sites"></td>
</tr>
<tr>
<th scope="row">valuation</th>
<td class="statistics-item statistics-valuation"></td>
</tr>
</tbody>
</table>
</div>
<div class="section section-primary">
<div class="section section-secondary section-address">
<h5>Address</h5>
<p></p>
</div>
<div class="section section-secondary section-social-media">
<h5>Social media</h5>
<div class="si-socialMedia">
<a class="social-media-icon social-media-twitter" target="_blank" href="">
<img src="images/twitter-brands.svg"/>
</a>
<a class="social-media-icon social-media-flickr" target="_blank" href="">
<img src="images/flickr-brands.svg"/>
</a>
</div>
</div>
</div>
</div>
<div class="companyMap">
<div id="map"></div>
</div>
</div>
</body>
</html>