-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (46 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Expenses chart component</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<script type="text/javascript" src="data.json"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/phone.css">
<link rel="stylesheet" href="https://fonts.google.com/specimen/DM+Sans">
</head>
<body>
<div class="container">
<div class="header">
<div>
<p class="label">My balance</p>
<h3 class="balance">$921.48</h3>
</div>
<img src="images/logo.svg">
</div>
<div class="content">
<h3>Spending - Last 7 days</h3>
<div class="graph">
</div>
<hr>
<div class="footer">
<div class="month-balance">
<p>Total this month</p>
<h2>$478.33</h2>
</div>
<div class="pourcent">
<span>+2.4%</span>
<p>from last month</p>
</div>
</div>
</div>
<div class="attribution" style="background-color: ">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.twitter.com/dawaiboubakari" target="_blank">Dawaï B.</a>.
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>