Changelog
Page 1
- First error: Start tag seen without seeing a doctype first.
Fixed by adding < !DOCTYPE html > in line 1.
- Second error: This document appears to be written in English.
Fixed by adding < html lang="en" > to line 2.
- Third error: The character encoding was not declared. Proceeding using windows-1252.
Fixed by adding rest of boiler plate code within the head: < meta charset="UTF-8" >,
< meta http-equiv="X-UA-Compatible" content="IE=edge" >, < meta name="viewport" content="width=device-width, initial-scale=1.0 >"
- Fourth error: Element e not allowed as child of element em in this context.
< e > closing tag changed to < em > in line 77.
- Fifth error: multiple Unmappable byte sequences: 9d.
Rewrote all quation marks (") and apostrophes (').
Page 2
- First error: Saw <>. Probable causes: Unescaped < (escape as <) or mistyped start tag.
Fixed by correcting closing tag to < /b > in line 25.
- Second error: Element h2 not allowed as child of element b in this context.
Fixed by changing < b >< h3 >Interior< /h3 >< /b > to < h3 >< b >Interior< /b >< /h3 > in line 51.
- Third error: Bad value where do i go for attribute href on element a: Illegal character in path segment: space is not allowed.
Fixed by adding the wikipedia link to "Segmental Arch" in the href: href="https://en.wikipedia.org/wiki/Segmental_arch" in line 55.
- Fourth error: An h3 before h2
Fixed by changing < h3 >Description< /h3 > to an h2 (line 35) and changing < b >< h3 >Interior< /h3 >< /b > to an h3 (line 51).
Page 3
- First error: Element l not allowed as child of element ul in this context.
Fixed by changing < l >< /l > to < li >< /li > in line 51.
- Second error: Saw >. Probable causes: Unescaped < (escape as <) or mistyped end tag.
Fixed by changing < td >Lily< / > to < td >Lily td > in line 80.
- Third error: In line 78 the table row Zapata was displayed as a table head in bold.
Fixed by changing the tag from < th > to < td > in line 78.
- Fourth error: Table structure was incorrect given the format: First name, Last name, Age.
Fixed by moving the first names, last names, and ages to the correct spot on the table.
Page 4
- First error: Start tag seen without seeing a doctype first.
Fixed by adding < !DOCTYPE html > in line 1.
- Second error: No
alt Attributes after the img src.
Fixed by adding alt Attributes with descriptive text.
- Third error: In line 36 no closing tag for
< td >.
Fixed by adding a closing tag < td >.
- Fourth error: In line 41 no tags for
< td >< /td >.
Fixed by adding them.
- Fifth error: Table structure was incorrect given the format: Dogs, Cats, Other?.
Fixed by moving the dog, cat, and other? images to their correct spots.