-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·33 lines (31 loc) · 1.11 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
<!DOCTYPE html>
<html>
<title>Sean's Outpost</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/seans_outpost.css">
<script src="js/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="js/seans_outpost.js" type="text/javascript"></script>
<head>
<title>Sean's Outpost</title>
</head>
<body>
<div id="header"></div>
<div class="fixed">
<div class="container-button">
<div class="styledtext">Help the less<br/>fortunate among us</div>
<div id="border_radius">
<input id="in_cash" type="text"><span class="preferredBitcoinFormat">BTC</span>
feeds <input id="persons_fed" type="text" value="" readonly /> people
</div>
</div>
</div>
<div class="container-footer">
<div align="right">
<img id="done" src="css/image/done.png">
</div>
</div>
<script>
$(document).ready( init );
</script>
</body>
</html>