This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 1.96 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
<html>
<head>
<title>Animation Test</title>
<style>
@font-face {
font-family: 'computo';
src: url(fonts/computo-monospace.otf);
}
@font-face {
font-family: 'v5prophit';
src: url(fonts/V5PRF___.TTF);
}
body {
padding: 0;
spacing: 0;
margin: 0;
}
</style>
</head>
<body>
<div class="login" style="position: fixed; display: block; z-index: 100; top: 2%; right: 2%; padding: 3px; opacity: 0.6; background-color: #ccc; color: #000;">Log In</div>
<div style="display: block; width: 100%; height: 450px; background: url(img/Star-field-hubble-deep.jpeg); text-align: center">
<div style="font-family: 'v5prophit'; font-size: 40px; color: red; padding-top: 30px">Rockets2Mars</div>
<svg width="800" height="400" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<image transform="rotate(45, 40, 40)" height="80" width="80" xlink:href="img/033-launch.svg">
<animateMotion dur="10s" repeatCount="indefinite"
path="M 0,170 C 0,170 400,0 680,160 C 680,160 400,0 190,170"
rotate="auto"/>
</image>
<image x="0" y="100" height="150" width="150" xlink:href="img/010-earth.svg" />
<image x="625" y="100" height="150" width="150" xlink:href="img/021-mars.svg" />
</svg>
</div>
<div style="width: 100%; text-align: center; padding-top: 2%">
<div style="display: inline-block; width: 30%">
<span style="font-family: sans-serif; font-size: 30px;">Our Rockets</span> <br />
Learn about our rockets!
</div>
<div style="display: inline-block; width: 30%">
<span style="font-family: sans-serif; font-size: 30px;">Flights</span> <br />
What is it like to fly to Mars?
</div>
<div style="display: inline-block; width: 30%">
<span style="font-family: sans-serif; font-size: 30px;">Let's Go!</span> <br />
You're jazzed? Let's get you booked!
</div>
</div>
</body>
<html>