Hi everyone!
I just finished my product landing page, any feedback would be appreciated :)))
Your page looks good @john3_16. Some things to revisit;
- Codepen provides the boilerplate for you. It only expects the code you’d put within the
body
element in the HTML editor. (No need to include thebody
tags). For anything you want to add to the<head>
element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
For instance, links to fonts go in the box labeled ‘Stuff for <head>’ - Run your HTML code through the W3C validator.
- There are HTML syntax/coding errors you should be aware of and address.
Since copy/paste from codepen you can ignore the first warning and first two errors.
- There are HTML syntax/coding errors you should be aware of and address.
- Do not use the
<br>
element to force line breaks or spacing. That’s what CSS is for.
Reference MDN Docs - Check that the user has entered a valid email addr. Throw an HTML5 validation error if not.
You learned to do this when coding the survey form - Change the cursor to a pointer when hovering over the submit button
- Make your page responsive. Remember, the R in RWD stands for Responsive
There’s a horizontal scrollbar on smaller screens
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.