HTML Flashcards
1
Q
How do you create a numbered list?
A
< ol >
< li >
2
Q
What are the minimum contents of the < body > tag?
A
< body >
- < h1-h6 >
- < p >
- < ul> < ol > : < li >
- < dl > : < dt > , < dd >
3
Q
< link rel=”stylesheet” href=”style.css”>
A
4
Q
A
A Cq SS
5
Q
What are the second 4 modifiers of < p > tag?
A
- < abbr title= >
- < sub > < sup>
- < code >
- < blockquote >
6
Q
How do you create a bullet point list?
A
< ul>
< li >
7
Q
What is the Basic Structure of an HTML document?
A
< !DOCTYPE html >
< html >
< head >
< body >
8
Q
What are the minimum contents of the < head > tag?
A
< head >
- < meta charset=”UTF-8” > < meta name= content= >
- < title>
- CSS: < link rel=”stylesheet” href=”style.css”>
- JavaScript: < script src=”file.js” defer > < /script >
9
Q
How do you insert CSS in the HTML document?
A
< link rel=”stylesheet” href=”style.css”>
10
Q
< script src=file.js defer > < /script >
A
11
Q
How do you insert JavaScript code in the HTML document?
A
< script src=”file.js” defer > < /script >
12
Q
A
BEti Comme
13
Q
What are the first 4 < p > modifiers?
A
- < br >
- < ESCAPE > : & quot, & amp
- < time datetime= >
- < !– –! >