html-101
html-101 copied to clipboard
The Origins I: HTML 🌋
Updated solutions for HTML challenges in: - Structure (2-structure) - Forms (3-forms) - Semantic HTML (4-semantic-html) Changes reflect the latest instructions from CodeDex HTML-101 course.
This PR removes trailing slashes from void elements (self-closing on HTML void elements), since no XHTML is being used. This also ensures that elements are consistent, as some had trailing...
## Description The image link in the pet HTML file is missing it's alt text. Even the description of the cat is the paragraph element, it's best to also have...
### Description In this PR, I move the image's in-line CSS to the CSS section. This creates cleaner code. ### Issue Relates to #58
## Description In the [final touches file](https://github.com/codedex-io/html-101/blob/main/4-semantic-html/26_final_touches.html), both of the images contain in-line CSS: 1. https://github.com/codedex-io/html-101/blob/6009394556d0488b2d4af4139611a8659f169434/4-semantic-html/26_final_touches.html#L66 2. https://github.com/codedex-io/html-101/blob/6009394556d0488b2d4af4139611a8659f169434/4-semantic-html/26_final_touches.html#L57 Since there is external CSS, it best [to avoid using it and...
### Description The input attributes in the [sign up form](https://github.com/codedex-io/html-101/blob/main/3-forms/17_sign_up.html) are missing `` tags and their respective `for` attributes. ### Solution Add `` tags and their respective `for` attributes.
 As shown in the screenshot above
I've noticed in 06_pet.html and 07_band.html that there are missing "alt" attributes in the images. I was told it's like a "must" so I was wondering about it