Tags Flashcards
1
Q
A document type declaration that all HTML documents must start with.
A
2
Q
What the HTML document itself begins and ends with
A
…
3
Q
The visible part of the HTML document
A
< body> …< /body>
4
Q
HTML headings
A
…
…
…
…
…
…
5
Q
HTML paragraphs
A
…
6
Q
HTML links
A
< a href=”https://www.w3schools.com”>This is a link < a/>
7
Q
HTML images
A
< img src=”imagename.jpg” />
8
Q
HTML buttons
A
< button>button text< /button>
9
Q
HTML bulleted list
A
- Coffee
- Tea
- Milk
10
Q
HTML numbered list
A
11
Q
HTML Horizontal Rules
A
< hr>
12
Q
The element that is a container for metadata that is placed between the
tag and the
A
< head> … < /head>
13
Q
Line break: if you want a line break (a new line) without starting a new paragraph
A
14
Q
Preformatted text element
A
< pre>This text will be preformatted< /pre>
15
Q
A