https://codepen.io/bej-d-vid/pen/YzpGYWd
Let me know what would you change.
i think as a general page this is very nice simple and effective. Not all pages need to be fancy and have a ton of unneccesery design / functionality!
As a tribute page i think its greatâŚ
1 Like
Welcome to the forums @bejodavid123. 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 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>â
- The test script is JS and will not run when place in the
head
element. Codepen is forgiving which is why it works here.
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- Remember, an
id
must be unique within the document
- Remember, an
- There are HTML 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. And donât use it to create a new paragraph. If you want multiple paragraphs then use multiple paragraph elements.- Reference MDN Docs
- Accessibility is about being accessible to all users. Review the lesson about giving meaningful text to links. For a more thorough explanation read Web Accessibility in Mind.
- âwikipedia entryâ is not accessible
2 Likes
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.