2024/25|Web Development Foundations -WGU
C779||2024-2025 most recent
version|Comprehensive questions and verified
answers/accurate solutions|Already graded
A+|Get it 100% correct.
Practice questions for this set
Learn 1 /7 Study with Learn
Creates a line break. Empty tag.
Choose matching term
1 <body> 2 <br>
3 <html> tag 4 Flat file
Don't know?
Terms in this set (166)
The <title> tag is the first tag that allows you to specify
content that will appear on the page. Any text you
enclose with this tag appears as the page title bar at
<title> the top of a browser. This text also appears in the
, 12/13/24, 9:56 AM 2024/25|Web Development Foundations -WGU C779||2024-2025 most recent version|Comprehensive questions and verified ans…
The <head> tag allows you to insert <meta> tags, link
<head> to style sheets, and assign a title to the document with
the <title> tag.
can include a document description, revision dates,
and keywords to help search engines index the page.
<meta>
It also specifies the HTML5 character set used, which
is usually UTF-8.
<br> Creates a line break. Empty tag.
The <b> element applies the bold font style, whereas
Difference between <b>
<strong> applies a heavier weight to the text relative
and <strong> bolding?
to the surrounding text.
Text-level elements can affect a section of text as
small as a single character.
Difference between text-
level and block-level? Markup elements that affect an entire paragraph or
multiple paragraphs are referred to as block-level
elements.
provides the main instruction of the tag. An element is
An element required in every tag. Elements include <body>, <p>,
<h1>, <title>, <table> and many others.
specifies a quality or describes a certain aspect of the
element. For example, a hyperlink is added to a Web
page by using the <a>, or anchor, element. The href
An attribute attribute is added, which identifies the hyperlink
reference. Many elements require specified attributes,
but some do not. An attribute is required in a tag only
if the element requires it.
gives value to the element and its attribute. For
example, <a href="http://www.ciwcertified.com"> has a
value that instructs the hyperlink to access the CIW
Certified Web site. Like attributes, values are optional
in a tag unless required by a specified attribute to the
A value
element. Values are used only with attributes;
elements do not take values directly. Values should be
surrounded by quotation marks; they are not required,
but placing values in quotation marks is considered
good coding practice.