-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtimeflowPage2.html
More file actions
74 lines (69 loc) · 2.52 KB
/
Copy pathtimeflowPage2.html
File metadata and controls
74 lines (69 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TimeFlow</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="section__Header">
<section class="header__sectionDay">
<p>Friday</p><br>
<h3>25 August</h3>
</section>
<section class="section__imgProfile">
<figure class="imgProfile__container">
<img src="./img/Profile.jpg" alt="profile">
</figure>
<figure class="menu__hamburguer">
<img src="./img/fi-rr-align-right.png" alt="menu">
</figure>
</section>
</header>
<main class="mainProfile">
<section class="mainProfile__sectionOne">
<h2 class="mainProfile__bienvenida">Hello Thuanny</h2><br>
<p>Today you have 10 tasks</p>
<label for="finished-progress">60% Finished</label>
<progress id="finished-progress" max="100" value="60">60%</progress>
<label for="pending-progress">40% Pending</label>
<progress id="pending-progress" max="100" value="40">0%</progress>
</section>
<section class="mainProfile__sectionTwo">
<h3 class="sectionTwo__mytasks">My tasks (4)</h3><br>
<a>See all</a>
</section>
<section class="mainProfile__sectionThree">
<div class="sectionThree__taskOne">
<h4>Landing Page Agency Creative</h4>
<p>Web design</p>
<div>
<img src="./img/fi-rr-clock.png" alt="clock">
<p>10:00 - 12:30</p>
<p>HIGH</p>
</div>
</div>
<div class="sectionThree__taskTwo">
<h4>Landing Page Agency Creative</h4>
<p>Web design</p>
<div>
<img src="./img/fi-rr-clock.png" alt="clock">
<p>10:00 - 12:30</p>
<p>HIGH</p>
</div>
</div>
<div class="sectionThree__taskThree">
<h4>Landing Page Agency Creative</h4>
<p>Web design</p>
<div>
<img src="./img/fi-rr-clock.png" alt="clock">
<p>10:00 - 12:30</p>
<p>HIGH</p>
</div>
</div>
</section>
</main>
<script src="./scripts/pagetwo.js"></script>
</body>
</html>