-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
impr(SEO): Semantic HTML (borisnezlobin) #4859
Conversation
<h2> | ||
</section> | ||
<section> | ||
<h1 class="bigtitle">about</h1> |
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.
Use h2 here, then you can remove the bigtitle class
<div class="section"> | ||
</p> | ||
</section> | ||
<section> | ||
<div class="title">word set</div> |
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.
Use h3, then remove the title class
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.
Also use h3 everywhere where you already used h2
Will do! |
ddca5ce
to
b974063
Compare
Everywhere else you mean other pages? |
yep! |
Yeah sure |
hi @borisnezlobin, |
Will do! I have finals this week, but will be able to work on this later this week + next |
This PR is stale. Please trigger a re-run of the PR check action. |
This PR is stale. Please trigger a re-run of the PR check action. |
Description
Changes the HTML to be more semantic (e.g., changing
<div class="section">
to just<section>
)This PR currently only changes one page (
/about
) in order to get progress feedback before changes are made to everything.Checks
No visual changes
Closes #4857