-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoreexp.html
84 lines (64 loc) · 1.35 KB
/
coreexp.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>CoreExp</title>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
<table>
<tr>
<th>WORKOUT</th>
<th>SETS</th>
<th>REPS</th>
<th>BREAK</th>
</tr>
<tr>
<th>Push-ups</th>
<th>5</th>
<th>15</th>
<th>15 Seconds</th>
</tr>
<tr>
<th>Daimond Push-Ups</th>
<th>5</th>
<th>10</th>
<th>15 Seconds</th>
</tr>
<tr>
<th>Inclined Push-Ups</th>
<th>5</th>
<th>8</th>
<th>15 Seconds</th>
</tr>
<tr>
<th>Duck-Walks</th>
<th>4</th>
<th>15-Each Leg</th>
<th>10 Seconds</th>
</tr>
<tr>
<th>Sided-Plancks</th>
<th>5</th>
<th>10 each side</th>
<th>30 seconds</th>
</tr>
</table>
</body>
</html>