summaryrefslogtreecommitdiff
path: root/kalorien_rechner/kfa_info.html
blob: 265c01c22159f972901810caa7d319c5e6efe89c (plain)
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
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Körperfettanteil Info</title>
    <link rel="icon" type="image/x-icon" href="/style/avocado.png">
    <link rel="stylesheet" type="text/css" href="/style/style.css">
</head>
<body>
<nav class="medium_box">
    <ul class="hor_spacing">
        <li class="hor_spacing_item">
            <a class="small_box color_inverse_on_hover" href="/login">Login</a>
        </li>
        <li class="hor_spacing_item">
            <a class="small_box tertiary_color_style" href="/kalorien_rechner">Kalorien-rechner</a>
        </li>
        <li class="hor_spacing_item">
            <a class="small_box color_inverse_on_hover" href="/kalorien_zaehler">Kalorien-zähler</a>
        </li>
        <li class="hor_spacing_item">
            <a class="small_box color_inverse_on_hover" href="/rezepte">Rezepte</a>
        </li>
        <li class="hor_spacing_item">
            <a class="small_box color_inverse_on_hover" href="/workouts">Workouts</a>
        </li>
    </ul>
</nav>
<main class="big_box">
    <h1>Körperfett Kalkulation</h1>
    <div class="hor_spacing">
        <table class="hor_spacing_item">
            <tr>
                <th>
                    <h2>Körperbau</h2>
                </th>
                <th>
                    <h2>Männer</h2>
                </th>
                <th>
                    <h2>Frauen</h2>
                </th>
            </tr>
            <tr>
                <td>
                    <h2>Super muskulös</h2>
                    <p>Nur essentielles Körperfett</p>
                </td>
                <td>
                    <h2>2-5%</h2>
                    <p>Körperfett</p>
                </td>
                <td>
                    <h2>10-12%</h2>
                    <p>Körperfett</p>
                </td>
            </tr>
            <tr>
                <td>            
                    <h2>Athletisch</h2>
                    <p>Geringer Prozentsatz von Körperfett</p>
                </td>
                <td>
                    <h2>6-13%</h2>
                    <p>Körperfett</p>
                </td>
                <td>
                    <h2>13-17%</h2>
                    <p>Körperfett</p>
                </td>
            </tr>
            <tr>
                <td>
                    <h2>Fit</h2>
                    <p>Schlank und leicht definiert</p>
                </td>
                <td>
                    <h2>14-17%</h2>
                    <p>Körperfett</p>
                </td>
                <td>
                    <h2>18-25%</h2>
                    <p>Körperfett</p>
                </td>
            </tr>
            <tr>
                <td>
                    <h2>Durchschnitt</h2>
                    <p>Keine klare Trennung von Muskeln und Fett</p>
                </td>
                <td>
                    <h2>18-24%</h2>
                    <p>Körperfett</p>
                </td>
                <td>
                    <h2>25-31%</h2>
                    <p>Körperfett</p>
                </td>
            </tr>
            <tr>
                <td>
                    <h2>Übergewichtig</h2>
                    <p>Offensichtiliche Zeichen von hohem Körperfett</p>
                </td>
                <td>
                    <h2>Mehr als 25%</h2>
                    <p>Körperfett</p>
                </td>
                <td>
                    <h2>Bis zu 50%</h2>
                    <p>Körperfett</p>
                </td>
            </tr>
        </table>
        <img class="hor_spacing_item" style="width: 100%" src="./kfa.jpg">
        <p>
            Berechne deinen genauen Körperfettanteil <a class="small_box color_inverse_on_hover" href="https://www.hammer.de/fitnesswissen/koerperfett-rechner">hier</a>.
        </p>
    </div>
</main>
</body>
</html>