-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
99 lines (96 loc) · 2.56 KB
/
Copy pathindex2.html
File metadata and controls
99 lines (96 loc) · 2.56 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | Time tracking dashboard</title>
<link rel="stylesheet" href="style.css" />
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
</html>
<body>
<main class="dashboard">
<section class="profile">
<div class="profile-top">
<div class="user-info">
<img src="./images/image-jeremy.png" alt="profile-img" />
<div class="text">
<p>Report For</p>
<h1>Jeremy Robson</h1>
</div>
</div>
</div>
<div class="profile-bottom">
<ul class="filters">
<li>dayly</li>
<li>weekly</li>
<li>monthly</li>
</ul>
</div>
</section>
<section class="cards">
<div class="card-work">
<div class="card-bg"></div>
<div class="card-content">
<h2>work</h2>
<p class="hours">32hrs</p>
<p class="last-week">last week - 36hrs</p>
</div>
</div>
<div class="card-play">
<div class="card-bg"></div>
<div class="card-content">
<h2>play</h2>
<p class="hours">10hrs</p>
<p class="last-week">last week - 8hrs</p>
</div>
</div>
<div class="card-study">
<div class="card-bg"></div>
<div class="card-content">
<h2>study</h2>
<p class="hours">4hrs</p>
<p class="last-week">last week - 7hrs</p>
</div>
</div>
<div class="card-exercise">
<div class="card-bg"></div>
<div class="card-content">
<h2>exercise</h2>
<p class="hours">4hrs</p>
<p class="last-week">last week - 5hrs</p>
</div>
</div>
<div class="card-social">
<div class="card-bg"></div>
<div class="card-content">
<h2>social</h2>
<p class="hours">5hrs</p>
<p class="last-week">last week - 10hrs</p>
</div>
</div>
<div class="card-self-care">
<div class="card-bg"></div>
<div class="card-content">
<h2>self care</h2>
<p class="hours">2hrs</p>
<p class="last-week">last week - 2hrs</p>
</div>
</div>
</section>
</main>
</body>