diff options
author | Michael Foiani <sotech117@michaels-mbp-21.devices.brown.edu> | 2022-09-06 21:10:45 -0400 |
---|---|---|
committer | Michael Foiani <sotech117@michaels-mbp-21.devices.brown.edu> | 2022-09-06 21:10:45 -0400 |
commit | 8d0e91a305e90b2e16fdadbfbc5fa77ddcafb735 (patch) | |
tree | 56323e022c636409780309503f634cf67a255ff8 /index.html | |
parent | 67d31021543c502c4175133eab558642a0f30512 (diff) |
fix tabbing
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 28 |
1 files changed, 13 insertions, 15 deletions
@@ -12,39 +12,36 @@ <script src="script.js" defer></script> </head> <body> - <nav id="hamburger-box" class="flex-row"> + <nav id="hamburger-box" class="flex-row" tabindex="-1"> <button id="hamburger-btn" class="openbtn" onclick="openNav()">☰</button> <h3 style="color: white; position: fixed; top: 20px; right: 5px; padding-right: 10px;">csci 1300</h3> </nav> <nav id="sidepanel" class="sidepanel" aria-label="drawer-navigation"> <img class="logo-img" src="assets/favicon.png" alt="Our logo image that directs to top of page"/> - <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a> - <a href="#full_menu" class="link">menu</a> - <a href="#calendar" class="link">calendar</a> - <a href="#staff" class="link">kitchen staff</a> - <a href="#faq" class="link">faqs</a> + <a href="javascript:void(0)" class="closebtn" onclick="closeNav()" tabindex="-1">×</a> + <a href="#full_menu" class="link" tabindex="-1">menu</a> + <a href="#calendar" class="link" tabindex="-1">calendar</a> + <a href="#staff" class="link" tabindex="-1">kitchen staff</a> + <a href="#faq" class="link" tabindex="-1">faqs</a> </nav> <header> <nav class="nav-flex" aria-label="primary-navigation"> - <img class="logo-img" src="assets/favicon.png" alt="Our logo image that directs to top of page"/> + <img class="logo-img" src="assets/favicon.png" alt="our logo image" tabindex="-1"/> <!-- <a class="link" href="#weekly_specials">Weekly Specials</a>--> <!-- <a class="link" href="#course_info">Course Info</a>--> <!-- <a class="button" href="#xxx">Weekly Specials</a>--> <div class="flex-row"> - <a class="link" href="#full_menu">menu</a> + <a class="link" href="#full_menu" tabindex="2">menu</a> <a class="link" href="#calendar">calendar</a> <a class="link" href="#staff">kitchen staff</a> <a class="link" href="#faq">faqs</a> </div> </nav> - <section class="title-flex" id="#top"> <article class="title-info-flex"> <figure class="video-title-wrapper"> <video src="assets/uiux-logo-blue.mp4" id="video-title" autoplay muted></video> - <div class="hide-border"> - - </div> + <div class="hide-border"></div> </figure> <article class="course-title-wrapper"> @@ -62,7 +59,7 @@ <!-- </aside>--> </article> <figure class="pastries-wrapper"> - <iframe id="connie-pastries" src='https://my.spline.design/cs1300pastries-527b5a4ae57f8e04517708ce6f4dd80e/' frameborder='0'></iframe> + <iframe tabindex="-1" id="connie-pastries" src='https://my.spline.design/cs1300pastries-527b5a4ae57f8e04517708ce6f4dd80e/' frameborder='0'></iframe> </figure> </section> @@ -175,7 +172,8 @@ <figure class="spreadsheet-wrapper"> - <iframe id="schedule-iframe" class="embedded-iframe" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vR97aOo6hHLDmv_bqzK5ipCBHRUKqnzfox3c0RzjBggOjWAzn0a49S2GxRieW9Cgg/pubhtml?widget=true&headers=false"></iframe> </figure> + <iframe id="schedule-iframe" class="embedded-iframe" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vR97aOo6hHLDmv_bqzK5ipCBHRUKqnzfox3c0RzjBggOjWAzn0a49S2GxRieW9Cgg/pubhtml?widget=true&headers=false"></iframe> + </figure> </section> <section id="calendar"> @@ -610,7 +608,7 @@ <p>3d models forged by <strong>Connie</strong>,<p> <p>illustrations crafted by <strong>Melissa</strong>,</p> <p>animated title fabricated by <strong>Isaac</strong>,</p> - <p>all made with <a class="glow-on-hover rainbow" style="color: #FF1493; text-decoration: none; cursor: default;" target="_blank" href="./assets/chicken_ordinance_final1.pdf">♥</a> in Providence</p> + <p>all made with <a tabindex="-1" class="glow-on-hover rainbow" style="color: #FF1493; text-decoration: none; cursor: default;" target="_blank" href="./assets/chicken_ordinance_final1.pdf">♥</a> in Providence</p> </footer> </section> </main> |