WGU E009 WEB DESIGN
FUNDAMENTALS
OBJECTIVE ASSESSMENT (OA)
PRACTICE EXAM BANK
350+ QUESTIONS WITH VERIFIED
ANSWERS & DETAILED RATIONALES
UPDATED FOR 2026-2027 ACADEMIC
YEAR | 100% ACCURATE | GRADED A+
# DOMAIN I: HTML FUNDAMENTALS
## Section 1.1: HTML Document Structure (Questions 1–15)
**Question 1**
What is the primary purpose of HTML in web development?
A) To style the visual appearance of a web page
B) To add interactivity and dynamic behavior to a web page
C) To structure the content and define the meaning of a web page
D) To manage the server-side logic of a web application
,Page 2 of 207
**Correct Answer: C**
**Rationale:** HTML (HyperText Markup Language) is the standard markup language for
creating web pages. Its primary purpose is to structure content and define its meaning using
elements like headings, paragraphs, and links. CSS is used for styling (A), JavaScript for
interactivity (B), and server-side languages like PHP or Python for server logic (D).
---
**Question 2**
Which HTML tag is used to define the root element of an HTML document?
A) `<head>`
B) `<html>`
C) `<body>`
D) `<root>`
**Correct Answer: B**
**Rationale:** The `<html>` tag is the root element of an HTML page. All other elements,
including `<head>` and `<body>`, must be contained within it. The `<head>` element contains
metadata (A), the `<body>` contains the visible content (C), and `<root>` is not a valid HTML
element (D).
---
**Question 3**
What is the correct doctype declaration for an HTML5 document?
,Page 3 of 207
A) `<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">`
B) `<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">`
C) `<!DOCTYPE html>`
D) `<?xml version="1.0" encoding="UTF-8"?>`
**Correct Answer: C**
**Rationale:** `<!DOCTYPE html>` is the correct and minimal doctype declaration for HTML5
documents. Options A and B are doctype declarations for older HTML versions. Option D is an
XML declaration, not an HTML doctype.
---
**Question 4**
Which of the following correctly represents the basic structure of an HTML document?
A) `<html><body><head></head></body></html>`
B) `<html><head></head><body></body></html>`
C) `<head><html></html><body></body></head>`
D) `<body><html><head></head></html></body>`
**Correct Answer: B**
**Rationale:** The correct structure is `<html>` as the root, containing `<head>` first (for
metadata), followed by `<body>` (for visible content). This hierarchical order is required for
valid HTML documents.
, Page 4 of 207
**Question 5**
Which HTML element contains meta-information about the document, such as character
encoding and page title?
A) `<body>`
B) `<header>`
C) `<head>`
D) `<meta>`
**Correct Answer: C**
**Rationale:** The `<head>` element contains meta-information about the HTML document,
including the page title, character encoding, viewport settings, and links to external stylesheets.
While `<meta>` tags are placed inside the `<head>` (D), the container element is `<head>`.
---
**Question 6**
What is the purpose of the `<title>` element in HTML?
A) To display a tooltip when hovering over an element
B) To define the title of the document shown in the browser tab
C) To create a heading on the webpage
D) To provide an alternative text for images
**Correct Answer: B**