Quotes and Lists Flashcards
0
Q
For longer block style quotes, use
A
<blockquote>
</blockquote>
1
Q
Which tag is used for short, inline quotes?
A
q
2
Q
Which command is used for a line break?
A
(br>
3
Q
Does a line break tag have content?
A
No.
4
Q
What is a void element?
A
Has no content
5
Q
Can a void element have content?
A
No
6
Q
Do void elements have closing tags in HTML 5?
A
No…such as <br></br> or <img></img>
7
Q
What’s the difference between a void element and an empty element?
A
In an empty element you have an opening and closing tag but no content. A void element only has an opening element
8
Q
What are: <li> <ol> <ul> <dl> <dt> <dd>
A
List item Ordered list (numbered 1, 2, 3...) Unordered list (bullet points) Definition list Definition term Definition description
9
Q
What is nesting?
A
Putting one element inside another
Ex: The <p> element is nested inside the element