-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.65 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="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<script src="app.js" defer></script>
<title>Time tracking dashboard | Frontend Mentor</title>
</head>
<body>
<div class="container">
<header>
<div class="profile">
<img src="./images/image-jeremy.png" alt="Jeremy">
<section class="profile__text">
<p>Report for</p>
<h1>Jeremy Robson</h1>
</section>
</div>
<div class="nav">
<button type="button" class="btn daily-btn">Daily</button>
<button type="button" class="btn weekly-btn active">Weekly</button>
<button type="button" class="btn monthly-btn">Monthly</button>
</div>
</header>
<main>
</main>
<!--extras-->
<div class="toggle-container">
<a href="https://github.com/Drougnov/time-tracking-dashboard-main" class="git-repo" target="_blank" rel="noopener" aria-label="git repository"><i class="fa-brands fa-github"></i></a>
<span>Light</span>
<div class="toggle">
<div class="slider"></div>
</div>
<span>Dark</span>
</div>
<!--extras-->
</div>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank" rel="noopener">Frontend Mentor</a>.
Coded by <a href="https://twitter.com/itz_rocky_barua">Rocky</a>.
</footer>
</body>
</html>