Font size
WorksheetsWeb Design Final Review SP21
Total questions: 23
Worksheet time: 14mins
What are the required elements of an HTML page?
doctype, html, head, body
doctype, html, title, body
doctype, html
html, title, paragraph
Where would you put the information that tells the webpage how to act/the metadata?
<title>
<head>
<body>
<!doctype HTML>
Where would you put all the stuff that shows up on the webpage?
<html>
<head>
<p>
<body>
What is <p> used to create?
Plastic
Paragraph
Picture
Page
Does the <html> element need a closing tag?
Yes
No
Which link will get you from "firstpage.html" to "secondpage.html" if both are in the same folder?
<link href="secondpage.html">Second Page</link>
<a href="../secondpage.html">Second Page</a>
<a>Second Page</a>
<a href="secondpage.html">Second Page</a>
Which link will get you from "firstpage.html" to "secondpage.html" if the second page is in the folder above the first page?
<link href="secondpage.html">Second Page</link>
<a href="../secondpage.html">Second Page</a>
<a>Second Page</a>
<a href="secondpage.html">Second Page</a>
Which link will get you from "firstpage.html" to "secondpage.html" if the second page is in the folder below the first page?
<link href="folder/secondpage.html">Second Page</link>
<a href="../secondpage.html">Second Page</a>
<a href="folder/secondpage.html">Second Page</a>
<a href="secondpage.html">Second Page</a>
Which CSS code would style this line of HTML?
<p>I want to be blue!</p>
.blue { color: blue; }
p { color: blue; }
<p> color: blue </p>
<style> p color blue </style>
Which CSS code would style this line of HTML?
<p class="blue">I want to be blue!</p>
.blue { color: blue; }
p { color: blue; }
blue { color: blue }
<style> blue color blue</style>
What is internal CSS?
Any CSS
CSS written inside a style attribute in an HTML tag (<p style="font-family: Comic Sans">)
CSS written in a .css file
CSS written inside a <style> tag in <head> of an HTML file
What is external CSS?
Any CSS
CSS written inside a style attribute in an HTML tag (<p style="font-family: Comic Sans">)
CSS written in a .css file
CSS written inside a <style> tag in <head> of an HTML file
How do you link a .css file to a .html webpage?
With a <link> in the <head>
With a <a> in the <head>
With a <link> in the <body>
With a <a> in the <body>
Select all the ways a website can be accessible:
High contrast colors
No alternative text for images
Logical layout: h1 then h2 then h3, etc
Easy-to read font-
Select all the things that should go near the top of a webpage:
Navigation links
Logo for business
Contact information
Main content on website
If you use color to draw attention to something, you are using the ___________ element of design.
Unity
Hierachy
Scale
Emphasis
If you make sure the content on your webpage looks symmetrical, you are using the ___________ element of design.
Similarity
Hierachy
Balance
Emphasis
If you use someone else's photo on a commercial website, what must you do?
Use it and link back to the place you got it
Ask creator for permission and then cite them on your webpage
Cite the copyright information on your webpage
Get permission from the creator and use it
How does Ms. Johnson want you to informally cite photographs on your webpage?
“Title of Image” by author, date. From source
Put the link to the source
Creator, A. (Year created). Title of Image, or a description. [Image format]. Retrieved from source
You want us to cite? Pshaw
You made it to the end! Tell me something:
