eddiejester.comResponsive Website Design

This Webpage was coded using the EXtensible HyperText Markup Language (XHTML) that is stricter than Hypertext Markup Language (HTML)

XHTML

XHTML

EXtensible HyperText Markup Language is a stricter, more XML-based version of HTML and is defined as an XML application and supported by all major browsers. XHTML was developed by World Wide Web Consortium (W3C) to help web developers make the transition from HTML to XML. By migrating to XHTML today, Web developers can enter the XML world with all of its benefits, while still remaining confident in the backward and future compatibility of the content.

XHTML

XHTML

EXtensible HyperText Markup Language (XHTML) is a markup language where all documents must be correctly formatted. XHTML was developed to make HTML more extensible and flexible to work with other data formats such as XML (EXtensible Markup Language). XHTML comes with a much stricter error handling to solve the problem when browsers ignore errors in HTML pages, and try to display the website even if it has some errors in the markup.

XHTML, elements must always be properly nested within each other.
<p><b>This element is properly nested.</b></p>
<p><b>This element is NOT properly nested.</p></b>

XHTML, elements must always be closed.
<p>This element is properly closed.</p>
<p>This element is NOT properly closed.

XHTML, element names must always be in lowercase.
<p>This element is lowercase.</p>
<P>This element is NOT lowercase.</P>

XHTML, attribute names must always be in lowercase.
<p>href="https://www.eddiejester.com/" This attribute name is lowercase.</p>
<p>HREF"https://www.eddiejester.com/" This attribute name is NOT lowercase.</p>

XHTML, attribute values must always be quoted.
<p>href="https://www.eddiejester.com/" This attribute name is quoted.</p>
<p>href=https://www.eddiejester.com/ This attribute name is NOT quoted.</p>