Problem - code used in text for example does not show up. Evidently there is something I should include around “” to make it show as part of text to be read.
Your code so far
<li>
The
<!DOCTYPE html> declaration defines this document to be HTML5
</li>
<li>The
<html> element is the root element of an HTML page</li>
<li>
The
<head> element contains meta information about the document
</li>
<li>
The
<title> element specifies a title for the document
</li>
<li>
The
<body> element contains the visible page content
</li>
<li>The
<h1> element defines a large heading
<li>The
<p> element defines a paragraph
</li>
</ul>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36.
@dianetrotter, I’m thinking this something you have between <code> </code> tags in your Tech Doc and you want the elements to show without being rendered. If that’s the case you can have them view correctly by defining them as; <html>
So in your document it would look like; <li>The <html> element is the root element of an HTML page</li>
and when the page renders you’ll see <html>
(Hoping I explained that well enough. If not, hit me back)
The <!DOCTYPE html< declaration defines this document to be HTML5
The <html> element is the root element of an HTML page
The
<head< element contains meta information about the document
</li>
<li>
The
<title< element specifies a title for the document
</li>
<li>
The
<body< element contains the visible page content
</li>
<li>The
<h1< element defines a large heading</li>
<li>The
<p< element defines a paragraph
</li>
</ul>
This is what is rendered
The declaration defines this document to be HTML5
The element is the root element of an HTML page
The element contains meta information about the document
The
I did that on my last 3 projects and I understand what you are saying. This one has extra challenges for me. After I understand what is required, I will feel comfortable. It took me more than 6 week on Project 3.