-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (44 loc) · 1.52 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
<!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">
<!--Fonts-->
<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=Outfit:wght@300;400;600&display=swap" rel="stylesheet">
<!--Styles-->
<link rel="stylesheet" href="./dist/css/styles.css">
<title>Frontend Mentor | Time tracking dashboard</title>
</head>
<body>
<header>
<section class="user container">
<div class="user__insideContainer">
<img src="./images/image-jeremy.png" alt="Profile photo">
<div class="user__insideContainer--textContainer">
<label>Report for</label>
<h1>Jeremy Robson</h1>
</div>
</div>
</section>
<section class="category container">
<nav>
<ul>
<li>Daily</li>
<li>Weekly</li>
<li>Monthly</li>
</ul>
</nav>
</section>
</header>
<main>
</main>
<section class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.<br>
Coded by <a href="https://github.com/Magnic0" target="_blank">Magnic0</a>.
</section>
<script type="module" src="./app/js/script.js"></script>
</body>
</html>