Save
...
Quarter 1
Quarter 1
ICT 8
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
kathryn
Visit profile
Cards (52)
What is web design?
Web design is the process of
planning
,
conceptualizing
, and
implementing
the plan for designing a website.
View source
Why is it important for websites to have an array of elements presented in an easy-to-navigate way?
It
enhances user experience
and facilitates easier access to information.
View source
What does WWW stand for?
World Wide Web.
View source
What is the World Wide Web?
The World Wide Web is a collection of
interlinked information
stored in
computers
around the world.
View source
What does HTTP stand for?
Hypertext Transfer Protocol.
View source
What is the purpose of HTTP?
HTTP is a set of
rules
for exchanging
text
,
graphics
,
sound
,
video
, and other multimedia files.
View source
What are web pages?
Web pages are
linked documents
or pages of
information
on the web.
View source
What is a server in a client-server environment?
A server is a
software program
that
interacts with client software
and responds to requests for information.
View source
What is a client in computing?
A client is a
software program
that
requests information
from another software program on a different computer.
View source
Who is Tim Berners Lee?
Tim Berners Lee is the director of the
World Wide Web Consortium
(
W3C
).
View source
What is a homepage?
A homepage is the
first
or
main
page
of a site on the
WWW.
View source
What does URL stand for?
Uniform Resource Locator.
View source
What is the function of a URL?
A URL is the
address
of a
unique resource
on the internet used by browsers to retrieve published resources.
View source
What does website structure define?
Website structure defines how
pages
and
information
are
organized
in relation to one another.
View source
What are the types of website structures?
Hierarchical
Structure: Organizes information in a top-down style.
Linear
Structure: Presents information in a sequential order.
Webbed
Structure: Multiple areas of the site linking to each other.
Database
Structure: Accesses information based on specific queries or criteria.
View source
What does
HTML
stand for?
HTML stands for
Hypertext Markup Language.
View source
What is the purpose of
HTML
?
HTML describes the
structure
of a
web page
and tells the browser how to display the
content.
View source
What is the role of a web browser?
The purpose of a web browser is to read
HTML documents
and display them
correctly.
View source
How does a paragraph start in HTML?
A paragraph always starts on a new
line
and is usually a
block
of text.
View source
What does the <title> element do in HTML?
The <title> element specifies a
title
for the HTML page shown in the browser’s
title bar
or
tab.
View source
What does the <body> element define?
The <body> element defines the document’s
body
and is a
container
for all
visible contents.
View source
What does the <h1> element define?
The <h1> element defines a
large heading.
View source
What does the <p> element define?
The <p> element defines a
paragraph.
View source
What is unique about the <br> element?
The <br> element doesn’t have an
end tag
, making it an
empty element.
View source
What does the <b> element define?
The <b> element defines
bold text without
any
extra importance.
View source
What does the <strong> element define?
The <strong> element defines
text
with
strong
importance, usually displayed in
bold.
View source
What does the <i> element do?
The <i> element displays text in
italic.
View source
What does the <em> element do?
The <em> element
emphasizes text.
View source
What does the <mark> element do?
The <mark> element displays
text
in
marked
or
highlighted
versions.
View source
What does the <small> element do?
The <small> element
makes text smaller.
View source
What does the <del> element do?
The <del> element
deletes texts.
View source
What does the <sub> element do?
The <sub> element makes texts look
subscript.
View source
What does the <sup> element do?
The <sup> element makes texts look
superscript.
View source
What does the <hr> element symbolize?
The <hr> element symbolizes the
horizontal rule
which draws a
straight line.
View source
What is the property that defines the background element for an HTML element?
background-color
What is the code used when you want to change the background color to pink?
<body style="background-color:pink;">
What property defines the text color of an HTML element?
The
CSS
color property
What is the code used when you want to change the color of heading 1 to pink?
<h1 style="color:pink;">
What property defines the font to be used for an HTML element?
The
CSS font-family
property
What is the code used when you want to change the font of the paragraph to Cambria?
<p style="font-family:cambria;">
See all 52 cards