Lab 4 - Part 1 - Coding and Validation
2. Code validator tests
Validators used:
HTML error(s)
I had one error. I had added some images to my Fishcreek website, when adding them, before styling with CSS, I included attributes for "width" and "height". These were not needed. The HTML checker didn't like my use of 100% for width, it expected a value, and "auto" for height. I had the same error for 4 images.
Error HTML
<img src="fishcreek.jpg" alt="Fish Creek" width="100%" height="auto" class="fishcreek-image">
HTML fix(es)
I was able to fix the errors by removing the width and height attributes. This did not change how my website rendered.
Fixed HTML
<img src="fishcreek.jpg" alt="Fish Creek" class="fishcreek-image">
CSS error(s)
I had no CSS errors. However I had a warning. I had accidentally set both the color and background-color property's of my header to the same colour. I had no text in the header so this didn't end up hiding anything. I had styled the color of my header text in a <h1> tag. For clarity I just removed the color property from the header CSS
3. Code browser tests
I tested my code on three browsers:
- Mozilla Firefox: Version 143.0.4 (64-bit)
- Google Chrome: Version 141.0.7390.77 (Official Build) (64-bit)
- Microsoft Edge: Version 141.0.3537.71 (Official build) (64-bit)
I found no differences in how the code rendered on the three different browsers.
4. CSS Game
I managed to complete all 32 levels!!
I learned a great deal about selecting different elements using CSS. It was a very good game.

Comments
Post a Comment