Kindly review my first project. https://codepen.io/zenoalive/pen/XWWLKGQ I am willing to know where I need to work on.
Title should be larger it may be in middle will do good
Image should be fit with content it look little in place.
Welcome to the forums @zenoalive. Your page looks good. Some things to revisit;
- Codepen provides the boilerplate for you. It only expects the code youâd put within the
body
element in HTML. (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.- Mainly mentioning because the
head
does not have a closing tag. Also, the test script is JavaScript. It would not go in thehead
element. It wonât work if there. It would be placed right before the closingbody
tag. Codepen is forgiving which is why it works now.
- Mainly mentioning because the
- Run your HTML code through the W3C validator.
- Since copy/paste from codepen you can ignore the first warning and first two errors.
- There are HTML coding errors you should be aware of and address.
- Donât use the
<br>
element to force line breaks or spacing. Thatâs what CSS is for. - Review the lesson about giving meaningful text to links.
- Web Accessibility in Mind has a more thorough explanation.
- âclick hereâ is not accessible