Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<a href="#quiz-content" class="skip-link">Skip to Quiz</a>
<header>
<nav role="navigation" aria-label="Main menu">
<ul>
Expand All @@ -24,6 +25,10 @@
</header>

<main class="hero-section" id="home-content">
<!-- <section id="banner" role="banner">
<img src="assets/banner.jpg" alt="" role="presentation" />
</section> -->

<h1>Test Your Web Accessibility Knowledge!</h1>
<p>Put your web accessibility skills to the test with our quick quiz!</p>
<button class="btn">Take the quiz!</button>
Expand Down Expand Up @@ -99,7 +104,19 @@ <h2>Your Results!</h2>

<footer role="contetninfo">
<div class="footer-content">
<nav aria-label="Footer menu"></nav>
<nav role="navigation" aria-label="Footer menu">
<ul>
<li>
<a href="#home-content">Home</a>
</li>
<li>
<a href="#about-content">About</a>
</li>
<li>
<a href="#quiz-content">Quiz</a>
</li>
</ul>
</nav>
</div>
</footer>
<script src="js/main.js"></script>
Expand Down