-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (103 loc) · 3.83 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<meta name="description" content="Fitness Tracker">
<meta name="author" content="Milos Sofronijevic">
<title>Fitness Tracker</title>
</head>
<body>
<div class="whiteBg" id="header">
<img id="backBtn" src="assets/img/icons/chevron_left-24px.svg" alt="back button">
<h2 id="title"></h2>
<p id="subtitle"></p>
</div>
<div id="week">
<div class="day lowOpacity"></div>
<div class="day lowOpacity"></div>
<div class="day lowOpacity"></div>
<div class="day lowOpacity"></div>
<div class="day lowOpacity"></div>
</div>
<!-- Data review for the whole week -->
<div id="home">
<div class="lowOpacity" id="avgActivity">
<table>
<tr>
<th rowspan="2"><img src="assets/img/icons/timer-24px.svg" alt="timer"></th>
<td class="firstRow">Activity</td>
</tr>
<tr>
<td class="secondRow">Average</td>
</tr>
</table>
<p id="avgTime"></p>
</div>
<div id="totalSteps">
<table>
<tr>
<th rowspan="2"><img src="assets/img/icons/directions_run-24px.svg" alt="run"></th>
<td class="firstRow">Steps</td>
</tr>
<tr>
<td class="secondRow">Total</td>
</tr>
</table>
<p id="numOfSteps"></p>
</div>
<div id="calBurned">
<table>
<tr>
<th rowspan="2"><img src="assets/img/icons/whatshot-24px.svg" alt="calories"></th>
<td class="firstRow">Calories</td>
</tr>
<tr>
<td class="secondRow">Total Burned</td>
</tr>
</table>
<p id="numOfCalories">340</p>
</div>
<div id="avgDistance">
<table>
<tr>
<th rowspan="2"><img src="assets/img/icons/navigation-24px.svg" alt="navigation"></th>
<td class="firstRow">Distance</td>
</tr>
<tr>
<td class="secondRow">Average (km)</td>
</tr>
</table>
<p id="avgKm"></p>
</div>
</div>
<!-- Data review for the whole week -->
<!-- Detailed information about one day -->
<div class="whiteBg" id="dayDetails">
<div id="dailySteps">
<img src="assets/img/icons/directions_run-24px.svg" alt="run">
<p>Steps</p>
<div id="numDailySteps"></div>
</div>
<p id="message1"></p>
<p id="message2"></p>
<table class="detailsTable">
<tr>
<th class="noBorder">km</th>
<th>cal</th>
<th>hours</th>
</tr>
<tr>
<td class="noBorder" id="km"></td>
<td id="cal"></td>
<td id="hours"></td>
</tr>
</table>
</div>
<!-- Detailed information about one day -->
<script src="assets/js/fitness-functions.js"></script>
<script src="assets/js/fitness-app.js"></script>
</body>
</html>