-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path10.improve-chart-accessibility-with-the-figure-element.html
52 lines (52 loc) · 1.48 KB
/
10.improve-chart-accessibility-with-the-figure-element.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
<body>
<header>
<h1>Training</h1>
<nav>
<ul>
<li><a href="#stealth">Stealth & Agility</a></li>
<li><a href="#combat">Combat</a></li>
<li><a href="#weapons">Weapons</a></li>
</ul>
</nav>
</header>
<main>
<section>
<!-- Only change code below this line -->
<figure>
<!-- Stacked bar chart will go here -->
<br />
<figcaption>
Breakdown per week of time to spend training in stealth, combat, and
weapons.
</figcaption>
</figure>
<!-- Only change code above this line -->
</section>
<section id="stealth">
<h2>Stealth & Agility Training</h2>
<article>
<h3>Climb foliage quickly using a minimum spanning tree approach</h3>
</article>
<article><h3>No training is NP-complete without parkour</h3></article>
</section>
<section id="combat">
<h2>Combat Training</h2>
<article>
<h3>Dispatch multiple enemies with multithreaded tactics</h3>
</article>
<article>
<h3>Goodbye world: 5 proven ways to knock out an opponent</h3>
</article>
</section>
<section id="weapons">
<h2>Weapons Training</h2>
<article>
<h3>Swords: the best tool to literally divide and conquer</h3>
</article>
<article>
<h3>Breadth-first or depth-first in multi-weapon training?</h3>
</article>
</section>
</main>
<footer>© 2018 Camper Cat</footer>
</body>