WGU D276 - Web Development Foundations
Objective Assessment | OA | Questions and
Answers | 2026 Updates | 100% correct
Correct 169
Incorrect
Questions and Answers
, 1 of 169
Definition
HTML 5.2 is the latest verion.
HTML 3.2 is an older but functional HTML standard. Some Webpages
and HTML editors still use the 3.2 and 4.01 standards.
The HTML 4.01 Recommendation (released in 1999) contained many
improvements from HTML 3.2, most notably Cascading Style Sheets
(CSS).
Give this one a try later!
Web Development Trifecta HTML Versions
Thoroughly understand and describe What is an absolute URL? Provide an
hexadecimal color. example.
Don't know?
, 2 of 169
Term
Fill in the blank (answer is one word; not www). Complete the URL for
the W3C markup validation service. https:// __ _.w3.org.
Give this one a try later!
checker verify
test validator
Don't know?
3 of 169
Term
Create an image link that links to WGU's website.
Give this one a try later!
It can be used to attract attention, express meaning, create desire, drive
conversions, and even earn a customer's loyalty.
, <!DOCTYPE html>
<html>
<body>
<h2>Image as a Link</h2>
<p>The image is a link. You can click on it.</p>
<a href="https://wgu.edu">
<img src="smiley.gif" alt="WGU">
</a>
</body>
</html>
An absolute URL contains the entire address from the protocol (HTTPS) to the
domain name (www.example.com) and includes the location within your website in
your folder system (/foldernameA or /foldernameB) names within the URL.
Basically, it's the full URL of the page that you link to.
<a href = http://www.example.com/xyz.html>
HTML attributes provide additional information about HTML elements.
The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the
link goes to:
<a href="https://www.w3schools.com">Visit W3Schools</a>
Don't know?
4 of 169
Term
Objective Assessment | OA | Questions and
Answers | 2026 Updates | 100% correct
Correct 169
Incorrect
Questions and Answers
, 1 of 169
Definition
HTML 5.2 is the latest verion.
HTML 3.2 is an older but functional HTML standard. Some Webpages
and HTML editors still use the 3.2 and 4.01 standards.
The HTML 4.01 Recommendation (released in 1999) contained many
improvements from HTML 3.2, most notably Cascading Style Sheets
(CSS).
Give this one a try later!
Web Development Trifecta HTML Versions
Thoroughly understand and describe What is an absolute URL? Provide an
hexadecimal color. example.
Don't know?
, 2 of 169
Term
Fill in the blank (answer is one word; not www). Complete the URL for
the W3C markup validation service. https:// __ _.w3.org.
Give this one a try later!
checker verify
test validator
Don't know?
3 of 169
Term
Create an image link that links to WGU's website.
Give this one a try later!
It can be used to attract attention, express meaning, create desire, drive
conversions, and even earn a customer's loyalty.
, <!DOCTYPE html>
<html>
<body>
<h2>Image as a Link</h2>
<p>The image is a link. You can click on it.</p>
<a href="https://wgu.edu">
<img src="smiley.gif" alt="WGU">
</a>
</body>
</html>
An absolute URL contains the entire address from the protocol (HTTPS) to the
domain name (www.example.com) and includes the location within your website in
your folder system (/foldernameA or /foldernameB) names within the URL.
Basically, it's the full URL of the page that you link to.
<a href = http://www.example.com/xyz.html>
HTML attributes provide additional information about HTML elements.
The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the
link goes to:
<a href="https://www.w3schools.com">Visit W3Schools</a>
Don't know?
4 of 169
Term