HTML Flashcards
Whats the first line that goes in any HTML5 document?
<!DOCTYPE html>
What does HTML stand for?
Hypertext Markup Language.
What HTML statement starts and ends and HTML document?
and
What is the open and close statement for the head of an HTML document and what information does it hold?
and …the information it holds is the title, metadata, etc.
what is the open and close html statement for the webpage title?
and
what html statement begins and ends the body of the document?
and
What is the html commands for placing links into a web document?
<a> [text description of link] </a>
What is the html statement for placing images into an html document?
<img></img>
What is an ordered list?
An ordered list is a list that is numbered.
What are the opening and closing tags for an html ordered list?
<ol> and </ol>
What is the opening and closing tag for individual items within an ordered list?
<li> and </li>
What is an unordered list in html?
An unordered list is a bullet point list.
What are the opening and closing tags for an unordered list?
<ul> and </ul>
What is the opening and closing tag for individual items within an unordered list?
<li> and </li>
How would you create a nested unordered list in an ordered list? Use tags only.
<ol> <li> <ul> <li></li> </ul> </li> </ol>