Questions and Answers 100% Pass Rate
Which of the following is the proper format for an HTML tag? ✔✔<h1>Content Affected by
Tag</h1>
Which of the following best describes the difference between the domain and path of a URL?
✔✔The domain specifies where the browser's request should be sent.
The path specifies exactly what file is being requested.
What is the domain of this URL: ✔✔example.com
What is generated from the following HTML code:
<h1>Hello</h1>
<h3>Hello</h3>
<h6>Hello</h6> ✔✔"Hello"
biggest
, bigger
big
Which of the following classifies as metadata about a webpage? ✔✔The title of the webpage
An image is hosted at
https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg
Which of the following is the proper HTML code to display this image on your webpage?
✔✔<img src="https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg">
Which of the following is a valid CSS rule? ✔✔h1 {
color: blue;
}
CSS rules have a selector that defines which HTML elements the rule applies to.