Home Page validation report
The validator showed a missing <main> tag closing, so I added it to fix the structure.
Back to Page Editor page
Table Page (Data) validation report
Had a small validation error for a missing slash in a <link> tag. I fixed it by
closing the tag properly with a trailing slash, changing it to
<link rel="icon" type="image/png" href="img/ASDY_logo.png" />. This resolved the error and ensured
my HTML is valid and well-structured.
Back to Page Editor page
Content Page validation report
Initially, I received an error because I used a <section> tag for my internal
navigation without including a heading element inside it. To fix this, I replaced the
<section> with a <nav> tag, which is semantically more
appropriate for navigation content. This resolved the error and improved the semantic structure of
my HTML.