Design comparison
SolutionDesign
Solution retrospective
Looking for feedback on my web page's responsiveness. I'm working on improving in that area. Any feedback is greatly appreciated!
Community feedback
- @Bayoumi-devPosted over 2 years ago
Hey Aaron, It looks good!... You have some
issues
you need to fix.Page should contain a level-one heading
, Change<p class="heading">Learn to code by watching others</p>
toh1
You should always have oneh1
per page of the document.
<h1 class="heading">Learn to code by watching others</h1>
This element
<h1>
represents the section headings. There are six levels of section headings<h1>
to<h6>
- Element
submit
is not allowed as a child of element form in this context, I think you mean this element<input type="submit">
, So change<submit class="submit">CLAIM YOUR FREE TRIAL</submit>
to:
<input type="submit" class="submit" value="CLAIM YOUR FREE TRIAL">
I hope this is helpful to you... Keep coding👍
Marked as helpful1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord