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?
What can control the color, typography, and layout of multiple web pages?
What are Cascading Style Sheets (CSS)?
What configures the color of text within an element?
What is color?
What is Hypertext Markup Language?
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>
What receives a request for the web page from the client?
What is the server?
What property configures the text (foreground) color of an element?
What is CSS color property?
ie:
body {color: blue}
What is the shorthand to configure the margin of an element?
What is margin?
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>
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>
What are the rules that describe how clients and servers communicate with each other over a network?
What are internet protocols?
What code configures the weight of the text in an ordered list to display bold?
What is:
ul {
font-weight: bold;
}
What configures a drop shadow on an element?
What is box-shadow?
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>
What structural element contains the main content of the web page document?
What is the Main element?
ie:
<main></main>
What organization takes a proactive role in developing recommendations and prototype technologies related to the Web?
What is the World Wide Web Consortium (W3C)?
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)?
What configures the horizontal placement (left or right) of an element?
What is float?
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>
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>
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)?
What code is used to configure the webpage using an external stylesheet?
What is:
<link rel="stylesheet" href="color.css">
What configures rounded corners?
What is border-radius?
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>
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?