We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In https://oneuiweb.dev/#/getting-started/quickstart the markup is:
<main class="container"> <div class="viewing"> <!-- Viewing area --> </div> <div class="content"> <!-- Interaction area --> </div> </main>
I think probably think <div class="viewing"> should maybe be a <section> or a <header> and <div class="content"> should be a <section> or an <article>
<div class="viewing">
<section>
<header>
<div class="content">
<article>
The text was updated successfully, but these errors were encountered:
Agree, planning to follow this: https://www.w3.org/TR/wai-aria-practices/examples/landmarks/HTML5.html so it would look something like this:
<html lang="en"> <head> ... </head> <body> <header>This is the header</header> <nav>This is the nav</nav> <main>And here is main</main> </body> </html>
PR are welcome 🤗
Sorry, something went wrong.
No branches or pull requests
In https://oneuiweb.dev/#/getting-started/quickstart
the markup is:
I think probably think
<div class="viewing">
should maybe be a<section>
or a<header>
and<div class="content">
should be a<section>
or an<article>
The text was updated successfully, but these errors were encountered: