Network
CSS
Properties
HTML
Design
100

Who is the person who requests access to a web page from a server by typing a web address into using a web browser such as Chrome or Firefox?

What is a client? 

100

What can control the color, typography, and layout of multiple web pages?

What are Cascading Style Sheets (CSS)?

100

What configures the color of text within an element?

What is color?

100
What does the abbreviation HTML stand for?

What is Hypertext Markup Language?

100

What structural element contains the headings of either a web page document or an area within the document such as a section or article?

What is the purpose of a Header element?

ie:

<header></header>

200

What receives a request for the web page from the client?

What is the server?

200

What property configures the text (foreground) color of an element?

What is CSS color property?

ie:

body {color: blue}

200

What is the shorthand to configure the margin of an element?

What is margin?

200

What type of hyperlink us used to link web pages within your site to open?

What is a Relative Hyperlink?

ie:

<a href="about.html">About Me</a>

200

What structural element contains the a section of buttons that provides navigation to the pages within the website?

What is the Nav element?

ie:

<nav></nav>

300

What are the rules that describe how clients and servers communicate with each other over a network?

What are internet protocols?

300

What code configures the weight of the text in an ordered list to display bold?

What is:

ul {

font-weight: bold;

}

300

What configures a drop shadow on an element?

What is box-shadow?

300

What type of hyperlink is used to link web pages on resources on other websites on the internet to open?

What is an Absolute Hyperlink?

ie:
<a href="http://www.google.com">Google</a>

300

What structural element contains the main content of the web page document?

What is the Main element?

ie:

<main></main>

400

What organization takes a proactive role in developing recommendations and prototype technologies related to the Web?

What is the World Wide Web Consortium (W3C)?

400

What is defined within the style element in the head section of a web page as shown below?

<head>
<style>
body {
background-color: blue;
}
</style>
</head>

What are embedded styles (internal styles)?

400

What configures the horizontal placement (left or right) of an element?

What is float?

400

What element causes the browser to advance to the next line before displaying the element or portion of text on a web page?

What is the line break element?

<br>

400

What structural element contains the footer content of a web page or section of a web page?

What is the Footer element?

ie:

<footer></footer>

500

What nonprofit organization has the main function of coordinating the assignment of internet domain names, IP address numbers, protocol parameters, and protocol port numbers?

What is the Internet Corporation for Assignment Numbers and Names (ICANN)?

500

What code is used to configure the webpage using an external stylesheet?

What is:

<link rel="stylesheet" href="color.css">

500

What configures rounded corners?

What is border-radius?

500

What element is used to display a block of quoted text in a special way - indented from both the left and right margins?

What is the blockquote element?

<blockquote></blockquote>

500

What are the four structural elements introduced in Chapter 2 of your book in order?

What is the Header element, Nav element, Main element, and the Footer element?

M
e
n
u