wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Welcome Back Web Development Review

Total questions: 20

Worksheet time: 12mins

Name
Class
Date
1.

Which of the three legs of web code is HTML?

a)

Content

b)

Appearance

c)

Actions

2.

Which of the following web languages have we learned in class? (Select all that apply.)

a)

HTML

b)

CSS

c)

JavaScript

d)

MySQL

3.

How would you use id="Hello" in CSS?

a)

.Hello

b)

Hello

c)

#Hello

d)

#hello

4.

How could you differentiate between two images in web code? (Select all that apply.)

a)

Give them different IDs

b)

Make the images different

c)

Give them different classes

d)

Put them in different div tags

5.

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?

a)

padding

b)

background

c)

float

d)

margin

6.

You have a <div> tag. It contains an image. You want to move the image inside the <div> tag. Which do you use?

a)

padding

b)

background

c)

float

d)

margin

7.

Which of the following sends a form to the database?

a)

<input type="button">

b)

<input type="text">

c)

<input type="radio">

d)

<input type="submit">

8.

Which input type allows you to choose more than one option?

a)

radio

b)

checkbox

c)

text

d)

button

9.

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)

a)

Google images

b)

A stock photo site

c)

Take them yourself/the site owner takes them

d)

Someone's personal blog with relevant images

10.

Which of the following are semantic tags? (Select all that apply)

a)

<nav></nav>

b)

<div></div>

c)

<header></header>

d)

<article></article>

11.

Where does the code you want to see go in HTML?

a)

Under the <html> tags

b)

Below your code

c)

Inside the <body> tags

d)

Inside the <head> tags

12.

Why is it important to have clean code now? (Select all that apply)

a)

It isn't, Ms. Lewis is just giving you a hard time

b)

Because your supervisor will check your work

c)

Because you need to learn the rules now so you can break them later.

d)

Because it will save you time in debugging later

13.

You see the filepath images/image.jpg. Where is the file located?

a)

A folder one up from your location

b)

A folder one down from your location

c)

In the same folder as the current file

d)

At the root

14.

You're editing your CSS document, but it isn't making changes to the webpage. Which of the following could be the problem?

a)

You've typed in an incorrect ID name

b)

You've got an incorrect filepath for your CSS document

c)

You've typed in your CSS code incorrectly

d)

All of the above

15.

Why is a wireframe important? (Select all that apply)

a)

It gives you a general layout to work off of for your code

b)

It's your complete design you have to code off of

c)

It gives a client a quick idea of what their site could look like

d)

It helps figure out where you'll click on the site before you start the design

16.

Which of the following are important when figuring out your target audience?

a)

Where they are online

b)

Their demographics

c)

How they prefer to communicate

d)

Their behaviors, attitudes, and lifestyle preferences

e)

All of the above

17.

What is the most important thing to remember about users?

a)

Users are patient

b)

Users prefer a how-to for a website

c)

Users do not like to think

d)

Users read text

18.

Where do users look first? (Select all that apply)

a)

Pictures

b)

Paragraph text

c)

Headings

d)

Navigation

19.

Your user is going to make a choice. Which one will they pick?

a)

Fastest choice

b)

Best choice

20.

Where should ALL of your CSS go?

a)

In a separate document. (External CSS)

b)

Inside <style> tags in the HTML. (Internal CSS)

c)

As an attribute in an HTML tag. (Inline CSS)