-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (60 loc) · 1.94 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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="styles/styles.css" />
<script src="scripts/site.js"></script>
<title>Frontend Mentor | Expenses chart component</title>
<style></style>
</head>
<body>
<main>
<article class="header">
<div>
<h1 class="balance-heading">My balance</h1>
<div class="balance-total">$921.48</div>
</div>
<img src="images/logo.svg" alt="Expenses Logo" />
</article>
<article class="graph-wrapper">
<section class="spending-graph">
<h2 class="graph-heading">Spending - Last 7 days</h2>
<article class="bar-graph"></article>
</section>
<section class="summary">
<div class="summary-left">
<h3 class="summary-heading">Total this month</h3>
<div class="summary-total">$478.33</div>
</div>
<div class="summary-right">
<div class="summary-increase">+2.4%</div>
<h3 class="summary-heading">from last month</h3>
</div>
</section>
</article>
</main>
<footer class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a href="https://www.frontendmentor.io/profile/seapagan" target="_blank"
>seapagan</a
>.
</footer>
</body>
</html>