-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (56 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="The most popular simulator on spending Elon's Billions. Can you spend it all?"
/>
<title>Spend Elon Musk's Money</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="./img/usd-circle.svg" />
</head>
<body>
<header>
<img loading="lazy" src="https://i.imgur.com/sroyZau.jpg" alt="" />
<div class="title-container">
<h1>Spend Elon Musk's Fortune!</h1>
<p>
If Elon cashed out all of his stocks & assets today he would have
<br />
approximately <strong>$217,000,000,000</strong> (US Dollars) in his
bank account.
</p>
<p>¿What would you <strong>spend it</strong> on?</p>
<p>¡Have your receipt at the end!</p>
</div>
</header>
<div class="total">
<p class="totalMoney" id="totalMoney">Remaining: $217,000,000,000</p>
<p class="percentageLeft" id="percentageLeft">
You haven't spent a single dollar! start buying!
</p>
</div>
<div class="app-container" id="allElements"></div>
<div class="receipt" id="receipt-container">
<h1>Receipt</h1>
</div>
<!-- <a class="btn-print" onclick="printSection('receipt-container')"
><button>Print Receipt</button></a
> -->
<a class="btn-print""
><button>Print Receipt</button></a
>
<div class="coffe-link">
<small>
Created by Kaloo Dinaz
<br>
<a href="/privacy-policy.html">Privacy Policy</a>
<a href="https://spendmoneyelonmusk.com/">Spend Elon Money Game</a>
</small>
</div>
<script defer src="code.js"></script>
</body>
</html>