Skip to content

Commit

Permalink
Improve web acccessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleA99 committed Oct 2, 2023
1 parent 79f503a commit d5f63fe
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,40 +20,41 @@
<body>
<main>
<div class="content-container">
<div class="instructions-shell">
<div class="instructions-container box-shadow">
<section class="instructions-shell">
<div class="instructions-container box-shadow" role="list">
<h3 class="instructions-header">Instructions</h3>
<ol>
<li>Click the "Select grid size" button and specify the desired grid size.</li>
<li>Each time your mouse passes through a square, the square's color will slightly darken.</li>
<li>The "Clear screen" button can be used to reset the screen.</li>
</ol>
</div>
</div>
</section>

<div class="etch-container box-shadow">
<section class="etch-container box-shadow">
<h1 class="etch-title">Etch A Sketch</h1>

<div id="grid-container"></div>

<div class="buttons-container">
<button id="prompt-button" type="button">Select grid size</button>
<button id="clear-button" type="button">Clear screen</button>
<button id="prompt-button" role="button" type="button" aria-label="Select grid size">Select grid size</button>
<button id="clear-button" role="button" type="button" aria-label="Clear screen">Clear screen</button>
</div>

<div class="knobs-container">
<div class="knob-left"></div>
<div class="knob-right"></div>
</div>
</div>
</section>
</div>
</main>

<footer>
<div class="footer-container">
<div class="footer-content">
<div id="footer-text">Copyright &copy Kyle Angelich 2023</div>
<a href="https://github.com/KyleA99/odin-etch-a-sketch" target="_blank"><img class="github-logo" src="assets/images/github-mark.png" alt="an image of the github logo, colored purple"></a>
<a href="https://github.com/KyleA99/odin-etch-a-sketch" target="_blank"><img class="github-logo" src="assets/images/github-mark.png" alt="GitHub logo">
</a>
</div>
</div>
</footer>
Expand Down

0 comments on commit d5f63fe

Please sign in to comment.