Font size
WorksheetsWelcome Back Web Development Review
Total questions: 20
Worksheet time: 12mins
Which of the three legs of web code is HTML?
Content
Appearance
Actions
Which of the following web languages have we learned in class? (Select all that apply.)
HTML
CSS
JavaScript
MySQL
How would you use id="Hello" in CSS?
.Hello
Hello
#Hello
#hello
How could you differentiate between two images in web code? (Select all that apply.)
Give them different IDs
Make the images different
Give them different classes
Put them in different div tags
You have a <div> tag. Inside is an image. You want to move the whole <div> tag to the middle of the screen. Which do you use in CSS?
padding
background
float
margin
You have a <div> tag. It contains an image. You want to move the image inside the <div> tag. Which do you use?
padding
background
float
margin
Which of the following sends a form to the database?
<input type="button">
<input type="text">
<input type="radio">
<input type="submit">
Which input type allows you to choose more than one option?
radio
checkbox
text
button
It's time to source appropriate photos for your website, that is NOT a school assignment. Where should you get them legally? (Select all that apply)
Google images
A stock photo site
Take them yourself/the site owner takes them
Someone's personal blog with relevant images
Which of the following are semantic tags? (Select all that apply)
<nav></nav>
<div></div>
<header></header>
<article></article>
Where does the code you want to see go in HTML?
Under the <html> tags
Below your code
Inside the <body> tags
Inside the <head> tags
Why is it important to have clean code now? (Select all that apply)
It isn't, Ms. Lewis is just giving you a hard time
Because your supervisor will check your work
Because you need to learn the rules now so you can break them later.
Because it will save you time in debugging later
You see the filepath images/image.jpg. Where is the file located?
A folder one up from your location
A folder one down from your location
In the same folder as the current file
At the root
You're editing your CSS document, but it isn't making changes to the webpage. Which of the following could be the problem?
You've typed in an incorrect ID name
You've got an incorrect filepath for your CSS document
You've typed in your CSS code incorrectly
All of the above
Why is a wireframe important? (Select all that apply)
It gives you a general layout to work off of for your code
It's your complete design you have to code off of
It gives a client a quick idea of what their site could look like
It helps figure out where you'll click on the site before you start the design
Which of the following are important when figuring out your target audience?
Where they are online
Their demographics
How they prefer to communicate
Their behaviors, attitudes, and lifestyle preferences
All of the above
What is the most important thing to remember about users?
Users are patient
Users prefer a how-to for a website
Users do not like to think
Users read text
Where do users look first? (Select all that apply)
Pictures
Paragraph text
Headings
Navigation
Your user is going to make a choice. Which one will they pick?
Fastest choice
Best choice
Where should ALL of your CSS go?
In a separate document. (External CSS)
Inside <style> tags in the HTML. (Internal CSS)
As an attribute in an HTML tag. (Inline CSS)
