with Certified Solutions
How do you embed an external web page within an HTML page?
A) `<embed>`
B) `<iframe>`
C) `<insert>`
D) `<object>`
✔✔ B) `<iframe>`
Which tag would you use to add a footer to an HTML page?
A) `<footnote>`
B) `<bottom>`
C) `<footer>`
D) `<end>`
✔✔ C) `<footer>`
What HTML attribute defines a unique identifier for an element?
A) `class`
1
,B) `name`
C) `label`
D) `id`
✔✔ D) `id`
Which attribute allows you to make an image clickable as a link?
A) `target`
B) `clickable`
C) `href`
D) `link`
✔✔ C) `href`
What tag would you use to create a drop-down list in HTML?
A) `<dropdown>`
B) `<select>`
C) `<list>`
D) `<input type="dropdown">`
✔✔ B) `<select>`
2
, How do you insert comments into an HTML document?
A) `<!-- comment -->`
B) `/* comment */`
C) `// comment`
D) `<comment>comment</comment>`
✔✔ A) `<!-- comment -->`
Which HTML attribute is used to set the default value of a form field?
A) `default`
B) `value`
C) `input`
D) `set`
✔✔ B) `value`
How do you create an image link in HTML?
A) `<img link="URL">`
B) `<a href="URL"><image></a>`
3