-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 2.18 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tzappa's GitHub Pages</title>
<link rel="stylesheet" href="running-time-table.css">
</head>
<body>
<main class="calculator-container">
<div class="content-wrapper">
<header>
<h1 class="main-title">Tzappa's GitHub Pages</h1>
<p class="section-title" style="text-align: center; margin-top: -1rem;">Collection of tools and resources</p>
</header>
<div class="calculator-layout">
<section class="calculator-form-section">
<article class="card">
<h2 class="section-title">Running Time Table</h2>
<div class="form-container">
<p>View estimated finish times for various distances based on different running paces. Also includes a pace calculator to help plan your races.</p>
<a href="running-time-table.html" class="calculate-button" style="display: inline-block; text-decoration: none; text-align: center;">View Time Table</a>
</div>
</article>
</section>
<section class="calculator-form-section">
<article class="card">
<h2 class="section-title">Heart Rate Zones Calculator</h2>
<div class="form-container">
<p>Calculate your maximum heart rate and training zones based on age using the formula: 211 - (0.64 × age). Includes a comprehensive zones table for ages 20-70.</p>
<a href="heart-rate-calculator.html" class="calculate-button" style="display: inline-block; text-decoration: none; text-align: center;">Calculate Heart Rate & Zones</a>
</div>
</article>
</section>
</div>
<footer style="margin-top: 4rem; text-align: center; font-size: 0.9rem; opacity: 0.7;">
<p>© 2025 Tzappa</p>
</footer>
</div>
</main>
</body>
</html>