Skip to content

Commit 918647a

Browse files
authored
fix: use correct heading levels (#550)
1 parent 75ca9fa commit 918647a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/exercise-tracker/views/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
<div class="container">
1212
<h1>Exercise tracker</h1>
1313
<form action="/api/users" method="post">
14-
<h3>Create a New User</h3>
14+
<h2>Create a New User</h2>
1515
<p><code>POST /api/users</code></p>
1616
<input id="uname" type="text" name="username" placeholder="username" />
1717
<input type="submit" value="Submit" />
1818
</form>
1919
<form id="exercise-form" method="post">
20-
<h3>Add exercises</h3>
20+
<h2>Add exercises</h2>
2121
<p><code>POST /api/users/:_id/exercises</code></p>
2222
<input id="uid" type="text" name=":_id" placeholder=":_id" />
2323
<input id="desc" type="text" name="description" placeholder="description*" />

0 commit comments

Comments
 (0)