-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
<title>Millionaires Project</title>
</head>
<body>
<div class="container">
<div class="btns">
<button id="add">Add Person</button>
<button id="double">Double income</button>
<button id="show">show Milionaire</button>
<button id="sort">Sort By income</button>
<button id="result">Result</button>
</div>
<div class="aside">
<h1>Millionaires <strong>Balance</strong></h1>
<div class="persons"></div>
<!-- <div class="person">
<h4>name</h4>
<span>$1,000,000.00</span>
</div>
<div class="person">
<h4>name</h4>
<span>$1,000,000.00</span>
</div>
<div class="person">
<h4>name</h4>
<span>$1,000,000.00</span>
</div>
<div class="person">
<h4>name</h4>
<span>$1,000,000.00</span>
</div> -->
<!-- <h2>Result <strong>$1,000,000.00</strong></h2> -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>