-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathqw.txt
More file actions
52 lines (38 loc) · 1.65 KB
/
qw.txt
File metadata and controls
52 lines (38 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
### Quiz:
**1. What does HTML stand for?**
a) HyperLinks and Text Markup Language
b) Home Tool Markup Language
c) Hyper Text Markup Language
d) None of these
**2. Choose the correct HTML element for the largest heading:**
a) `<head>`
b) `<h1>`
c) `<heading>`
d) `<h6>`
**3. Choose the correct HTML element to define emphasized text**
a) `<i>`
b) `<italic>`
c) `<b>`
d) `<em>`
**4. How can you open a link in a new tab/browser window?**
a) < a href="url" target="new">
b) < a href="url" target="_blank">
c) < a href="url" new>
d) All of them
**5. What does CSS stand for?**
a) Computer Style Sheets
b) Colorful Style Sheets
c) Cascading Style Sheets
d) Creative Style Sheets
**6. Where in an HTML document is the correct place to refer to an external style sheet?**
a) In the `<head` section
b) In the `<body` section
c) At the end of the document
d) All the positions are correct
**Answers**
1. c)
2. b)
3. d)
4. b)
5. c)
6. a)