Page with HTML5 Structural Elements, Labelled with ARIA
Header
John Doe’s Web Presence
My Hobbies
These all are activities I love to do on a regular basis.
Physical Activities
Playing Soccer
Soccer is a team sport played between two teams of eleven players with a spherical ball.
Dancing
Dance is a performing art form consisting of purposefully selected sequences of human movement.
Relaxing Activities
Watching Movies
A film, also called a movie, motion picture, theatrical film, or photoplay, is a series of still images which, when shown on a screen, creates the illusion of moving images due to the phi phenomenon.
Code
<header>
<h1 class="visually-hidden">
Header
</h1>
<p>
John Doe's Web Presence
</p>
</header>
<nav aria-labelledby="user_nav_heading" class="user">
<h1 class="visually-hidden" id="user_nav_heading">
User navigation
</h1>
<ul>
<li>
<a href="#">Login</a>
</li>
<li>
<a href="#">Sign up</a>
</li>
</ul>
</nav>
<nav aria-labelledby="content_nav_heading" class="content">
<h1 class="visually-hidden" id="content_nav_heading">
Content navigation
</h1>
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Hobbies</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Etc.</a>
</li>
</ul>
</nav>
<main>
<h1>
My Hobbies
</h1>
<p>
These all are activities I love to do on a regular basis.
</p>
<h2>
Physical Activities
</h2>
<h3>
Playing Soccer
</h3>
<p>
Soccer is a team sport played between two teams of eleven players with a spherical ball.
</p>
<h3>
Dancing
</h3>
<p>
Dance is a performing art form consisting of purposefully selected sequences of human movement.
</p>
<h2>
Relaxing Activities
</h2>
<h3>
Watching Movies
</h3>
<p>
A film, also called a movie, motion picture, theatrical film, or photoplay, is a series of still images which, when shown on a screen, creates the illusion of moving images due to the phi phenomenon.
</p>
</main>
<footer>
<h1 class="visually-hidden">
Footer
</h1>
<p>
Copyright 2057 John Doe
</p>
</footer>
.visually-hidden {
position: absolute;
left: -10000px;
width: 1px;
height: 1px;
overflow: hidden;
}
body {
margin: 0;
}
header {
background-color: lightpink;
overflow: hidden;
border-bottom: 1px solid black;
padding-left: 20px;
padding-right: 20px;
}
nav.user {
background-color: Lemonchiffon;
position: absolute;
right: 0;
width: 120px;
border: 1px solid black;
border-top: 0;
border-right: 0;
}
nav.content {
background-color: lightgreen;
float: left;
width: 200px;
border-bottom: 1px solid black;
}
main {
margin-left: 200px;
overflow: hidden;
border-left: 1px solid black;
padding-left: 20px;
padding-right: 20px;
}
footer {
background-color: lightsteelblue;
overflow: hidden;
padding-left: 20px;
padding-right: 20px;
border-top: 1px solid black;
}
NIL