-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (65 loc) · 2.12 KB
/
index.html
File metadata and controls
70 lines (65 loc) · 2.12 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
<html>
<head>
<title>jakewendt.com</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js" type="text/javascript"></script>
<style>
body {
width: 800px;
margin: 100px auto;
font-family: georgia;
}
h1 {
text-align: center;
}
.right {
text-align: right;
}
p {
line-height: 35px;
text-align: justify;
}
p a {
padding-right: 20px;
}
div#footer {
background-color:silver;
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
font-size: 30px;
text-align: center;
}
div#footer a {
padding: 10px;
color:black;
text-decoration:none;
}
</style>
</head>
<body>
<div id='main'>
<h1>jakewendt.com</h1>
<p>would you like to play a game? <a href='mine_sweeper.html'>mine sweeper?</a> <a href='blackjack.html'>blackjack?</a> <a href='notyahtzee.html'>notyahtzee?</a> <a href='grid.html'>Or unscramble the grid?</a> <a href='unscramble.html'>Or unscramble the letters?</a></p>
<p class='right'><a href='game_of_life.html'>or perhaps just watch a game of life?</a><a href='bounce.html'>or be hypnotized by the bouncing O?</p>
<p><a href='gravity/solar_system.html'>Might I recommend some hypnotizing orbital trajectories of the solar system?</a>
<a href='gravity/rocky_planets.html'>Or just the rocky planets of the solar system?</a>
<a href='gravity/comet.html'>Maybe a fake comet?</a>
<a href='gravity/earth_moon.html'>Or just the earth and moon? (yes, the moon is there)</a>
<a href='gravity/earth_cruithne.html'>Or even the creepy earth crosser cruithne?</a>
<a href='gravity/earth_space_station.html'>Or the earth and space station?</a>
<a href='gravity/solar_binary.html'>Or the rocky planets and a binary sun?</a>
<a href='gravity/random_asteroids.html'>Or 50 random asteroids between Mars and Jupiter?</a></p>
</div><!-- id='main' -->
<div id='footer'>
<!-- Gone now, apparently
<a href='http://beknown.com/jakewendt'>beknown</a>
-->
<a href='https://orcid.org/0000-0003-3608-9601'>orcid</a>
<a href='https://www.linkedin.com/in/jakewendt'>linkedin</a>
<a href='https://github.com/jakewendt'>github</a>
<a href='mailto:footer_email_address_yes_I_am_real@jakewendt.com'>email</a>
</div><!-- id='footer' -->
</body>
</html>