-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorebeg.html
82 lines (64 loc) · 1.41 KB
/
corebeg.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
<!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>CoreBeg</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>
<td>Jumping Jacks</td>
<td>3</td>
<td>20</td>
<td>30 Seconds</td>
</tr>
<tr>
<th>High-Knees</th>
<th>3</th>
<th>20</th>
<th>30 seconds</th>
</tr>
<tr>
<th>Frog-Jumps</th>
<th>3</th>
<th>20</th>
<th>30 seconds</th>
</tr>
<tr>
<th>Mountain CClimbers</th>
<th>3</th>
<th>20</th>
<th>30 seconds</th>
</tr>
<tr>
<th>3/4 Squats</th>
<th>5</th>
<th>20</th>
<th>1 minute</th>
</tr>
</table>
</body>
</html>