HTML Flashcards
(35 cards)
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>
How do you make comments in an html document?
<!-- [comment]-->
What is a tag attribute?
Tag attributes are simply added characteristics to the content of the element.
What is the open and close html tag for bold?
<strong></strong>
What is the open and close html tag for making text italic?
<em></em> ….em is for emphasis
What is the opening and closing html tag for creating tables?
<!-- <table></table> -->
What is a table?
A table is just a bunch of information arranged in rows and columns.
What html tag is used to create a table row?
tr and /tr
How do you create columns in an html table?
There is no tag for creating columns. You tell each row how many cells to have, and that determines the number of columns.
What is the opening and closing html tag for table data?
td and /td