-
Notifications
You must be signed in to change notification settings - Fork 570
New issue
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
landing page #459
base: master
Are you sure you want to change the base?
landing page #459
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
watch the attached video and fix the changing width page when opening the menu
https://www.loom.com/share/2ca3af8ecf7442eba9ae3c8463b73fdd?sid=20f32e67-f05e-4f56-9074-fc85d291be5b
src/index.html
Outdated
<a | ||
href="#menu" | ||
class="icon icon--menu top-bar__icon" | ||
></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can add aria-label
to icons for better screen reader support.
<a | |
href="#menu" | |
class="icon icon--menu top-bar__icon" | |
></a> | |
<a | |
href="#menu" | |
class="icon icon--menu top-bar__icon" | |
aria-label="Open menu" | |
></a> |
<div class="language language--header top-bar__language"> | ||
<select | ||
required="required" | ||
class="language__select" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can also add the aria-label
attribute here to improve accessibility.
src/index.html
Outdated
<ul class="nav__list"> | ||
<li class="nav__item"> | ||
<a | ||
href="#exibitions" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
href="#exibitions" | |
href="#exhibitions" |
src/index.html
Outdated
<a | ||
href="#plan-visit" | ||
class="primary-button header__button" | ||
> | ||
Купити квиток | ||
</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<a>
tags used as buttons should include role="button"
to ensure better screen reader support.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
DEMO LINK