DQZ Session 1
1 What is an empty tag in HTML/XHTML?
Any tag that doesn't rely on anything for example the <br> tag creates line breaks but is considered empty because of the fact that it doesn't have an end tag like most of the HTML tags. XHTML tags the tags would be as I have stated for the line break tag <br> but since someone is dealing with XHTML adding in the </br> ends the empty tag making it useful for XHTML.
2 How do you modify an empty tag to become XHTML compliant?
By putting the </> in at the end of a tag, one can make an empty tag XHTML compliant.
3 To help ensure that your page will be more accessible and ready for the future of the web, one should rely more heavily on CSS than HTML styles.
I believe this to be true, wtih CSS one can make a change to a number of documents and then not have to go through individually and make changes, and since with CSS you can edit HTML styles in the CSS's and not have to pick the formats individually.
4. When writing HTML, which tag is used to set up the defaults for the web page?
The body tag, which looks like this <body> and also the HTML tag <html>