-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (78 loc) · 4 KB
/
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
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 lang="en">
<head>
<meta charset="utf-8"/>
<title>Stella Motus - High value, custom built spaceships</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> <!--Grab Roboto-->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css"> <!--Grab font-awesome-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--Website is responsive-->
<script src="//code.jquery.com/jquery-1.10.2.js"></script> <!--Using jQuery-->
</head>
<body>
<main>
<header>
<h1>Stella Motus</h1>
<p>Your future, today.</p>
<nav>
<ul>
<li><a href='about.html'><span>About</span></a></li>
<li><a href='blog.html'><span>Blog</span></a></li>
<li><a id="order" href='order.html'><span>Order</span></a></li>
</ul>
</nav>
</header>
<hr> <!--Icon section-->
<div class="callout"><h2>High value, reliable spacecraft</h2></div>
<div id="icon_section">
<div class="icon"><i class="fa fa-cogs fa-4x" aria-hidden="true"></i><h2>Precision Engineered</h2><p>Our in-house mechanics custom build every order by hand so quality and reliability is always assured.</div>
<div class="icon"><i class="fa fa-plane fa-4x" aria-hidden="true"></i><h2>10,000 Lightyear Warranty</h2><p>As one of the leading suppliers of commercial spacecraft we offer a 10,000 lightyear warranty on ALL orders.</div>
<div class="icon"><i class="fa fa-check fa-4x" aria-hidden="true"></i><h2>Federal Space Commission Certified</h2><p>We work to the latest standards set in place by the FSC so that you can be sure your vehicle is legal.</div>
</div>
<hr> <!--Recent blog posts section-->
<h2 style="color:black;">Blog</h2>
<div id="post-container">
<div class="card"><img src="img/placeholder-header.jpg" alt="FTL drive"><h3>8 reasons you NEED a new FTL drive!</h3><p>It can often feel like your cruiser is starting to drag as FTL charge times increase and subsequent power consumption leaves you desperate for a little more juice. It's time to upgrade your FTL drive!</p><p><a href="blog.html">Read More...</a></p></div>
<div class="card"><img src="img/slime-head.jpg" alt="Slime creature"><h3>FSC issues "slime creature" warning</h3><p>The FSC (Federal Space Comission) has issued a warning to capsuleers following recent attacks on terrestrial spacecraft from "creature made entirely of slime".</p><p><a href="blog.html">Read More...</a></p></div>
<div class="card"><img src="img/placeholder-cargo.jpg" alt="Scanner usage"><h3>S4X Scanner TESTED</h3><p>The folks at Scan'em Technologies were kind enough to send us their new S4X scanner. So how does it fare against the world-renowned S3X series? We investigate...</p><p><a href="blog.html">Read More...</a></p></div>
</div>
<hr> <!--Footer-->
<footer>
<section>
<h2>Stella Motus</h2>
<ul id="sitemap">
<li><a href='index.html'>Home</a></li>
<li><a href='about.html'>About</a></li>
<li><a href='blog.html'>Blog</a></li>
<li><a href='order.html'>Order</a></li>
</ul>
<ul>
<li>© Hyperval Starships Ltd. 2016</li>
<li>No Rights Reserved</li>
</ul>
</section>
<section>
<h2>Contact</h2>
<ul>
<li>Office 764b</li>
<li>MG Industrial Station</li>
<li>Jita</li>
<li>New Eden</li>
<li>#stellamotus</li>
</ul>
</section>
<section>
<h2>Social</h2>
<ul>
<li><a href='#'>Facebook</a></li>
<li><a href='#'>Twitter</a></li>
<li><a href='#'>IRC</a></li>
<li><a href='#'>Email</a></li>
<li><a href='#'>Usenet</a></li>
</ul>
</section>
<p id="copyright">Site design by <a href='http://peb.si'>Thomas Lock</a><br>Computer Science at <a href='http://lincoln.ac.uk'>University of Lincoln</a></p>
</footer>
</main>
</body>
</html>