wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Web Design Diagnostic 1

Total questions: 36

Worksheet time: 15mins

Name
Class
Date
1.

When create a website it is important to know the following information:

a)

What type of site you will have

b)

its purpose-Goals/Objectives

c)

Target audience

d)

Website layout

e)

all of the above

2.

What does HTML Stand for?

a)

Heat Television Mice Language

b)

Hyper Text Markup Language

c)

High Top Meal Loss

3.

What does IP stand for?

a)

Intellectual Property

b)

Intelligent Panda Association

c)

Internet Protocol Address

d)

Index Procedure

4.

What does URL stand for?

a)

Uniform Relocator

b)

Ultimate Rebels

c)

Under Red Lagoons

d)

Uniform Resource Locator

5.

What does WWW stand for?

a)

World Wide Web

b)

Web Wide World

c)

Wide Web World

d)

Web Web Web

6.

List some things you can create with HTML

a)

Text

b)

Font

c)

Color

d)

Graphics

e)

Hyperlink Effects

7.

Example of a domain name:

a)

www.cnn.com

b)

#CNN

c)

Cnn.Cnn@Cnn

d)

@Mrs.Ribas

8.

List of at least 3 other things you can do on the internet

a)

Email

b)

Social Media

c)

Shopping

d)

Manage Finances

e)

TV

9.

What is the purpose of a website?

a)

A news platform

b)

Advertisement

c)

Online Library

d)

Education

10.

What does CSS stand for?

a)

Crumbling Silly Smurfs

b)

Cascading Style Sheets

c)

Creative Shift Sheets

d)

Crazy Style Sheets

11.

Web Designing is:

a)

Designing a Spider Web

b)

Process of using creativity to design and construct a website and updating it regularly to incorporate changes

c)

Creating some sick rhymes

d)

Singing very loud

12.

Web Design is:

a)

watching a spider

b)

ngised bew just backwards

c)

A career in which you watch spiders

d)

Is a concept of planning, creating, and maintaining web pages.

13.

Web Browser is

a)

A magnifying glass you use for the computer

b)

A type of software that allows you to find and view websites on the Internet.

c)

someone who shops online but doesn't purchase anything.

d)

web borrower

14.

HTML is

a)

coding language that webpages are written in

b)

How To turn on the computer

c)

a streaming service

d)

a game

15.

IP Address serves what principle functions?

a)

host or network interface identification

b)

location addressing

c)

Numbers

16.

Server is:

a)

a maid

b)

a butler

c)

a waiter at Ruby Tuesday's

d)

Where websites are stored, and it works a lot like your computer's hard drive

17.

The Web

a)

Belongs to Charlotte

b)

A title of a new movie coming on out Blue Ray on September 29

c)

A collection of different websites you can access through the Internet

18.

Internet

a)

When belongings are in a net

b)

A global network of a few computers and other electronic devices

c)

A global network of billions of computers and other electronic devices

d)

A global network of 500 computers and electronic devices

19.

Which of the following is the proper way to apply the CSS code inside style.css to the home.html file?

a)

Inside home.html:


<head>

<link rel="stylesheet" type="text/css" href="style.css">

</head>

b)

Inside home.html:


<head>

<style href="style.css"></style>

</head>

c)

Inside style.css:


<html href="home.html">

d)

Inside style.css:


applyTo {

href: home.html;

}

20.

Which of the following is the proper way to link to the about.html page from the index.html page?

a)

<a href="about">About This Site</a>

b)

<a href="/about.html">About This Site</a>

c)

<a href="about.html">About This Site</a>

d)

<a href="/about">About This Site</a>

21.

What are IFrames?

a)

Buttons that link to other websites

b)

Videos uploaded to your website

c)

The number of views your website has

d)

HTML pages embedded inside of other HTML pages

22.

True or False: It is possible to embed any website inside IFrames.

a)

True

b)

False

23.

What is the function of the div tag?

a)

To define a section of an HTML page

b)

To group a block of elements together to format them with CSS

c)

To efficiently apply the same style to several different elements

d)

All of the above

24.

Which of the following correctly uses div to style multiple elements the same way?

a)

<div class="intro">

<h2>Welcome</h2>

<p>Hi, welcome to my page.</p>

</div>

b)

<div>

<h2 class="intro">Welcome</h2>

<p class="intro">Hi, welcome to my page.</p>

</div>

c)

<div>

.intro{

font-size: 16px;

font-style: italic;

}

<h2>Welcome</h2>

<p>Hi, welcome to my page.</p>

</div>

d)

<h2 div class="intro">Welcome</h2>

<p div class="intro">Hi, welcome to my page.</p>

25.

What is the difference between <span> and <div>?

a)

<span> is better for styling text, while <div> is better for styling images

b)

<span> is for styling multiple elements, while <div> is for styling single elements at a time

c)

<span> is used to group and style inline elements, while <div> creates a line break

d)

<span> is used to style elements, while <div> is used to embed parts of other websites

26.

Which of the following selects all p tags with the class alert and makes them red?

a)

p.alert {

color: red;

}

b)

p {

.alert {

color:red;

}

}

c)

.alert p{

color: red;

}

d)

p alert{

color: red;

}

27.

How can I select all h1 tags that are immediate children of div tags?

a)

div h1 {

...

}

b)

div > h1 {

...

}

c)

div {

h1 {

...

}

}

d)

.h1 div {

...

}

28.

What is the reasoning behind the Don’t Repeat Yourself principle?

a)

It helps you stay under the HTML file character limit

b)

Repeated code makes it harder to read and edit

c)

HTML files with repeated code will take a very long time to load

d)

It makes a more clean and organized website for the user

29.

What are some ways to cut down on repetitive code in your website?

a)

Group together multiple selectors with commas

b)

Strategically plan ahead to make sure the site is coded concisely

c)

Use a div to style multiple elements

d)

All of the above

30.

Which of the following will turn the h1 tag blue as the mouse hovers over it?

a)

hover > h1 {

color: blue;

}

b)

h1:hover {

color: blue;

}

c)

h1; hover {

color: blue;

}

d)

h1, hover {

color: blue;

}

31.

Which of the following will insert an exclamation point after every h2 element?

a)

h2:after {

content: “!”;

}

b)

h2:after {

content: !;

}

c)

h2::after {

content: “!”;

}

d)

h2::after {

content: !;

}

32.

True or False: If a selector’s display property is set to none, selected elements will still take up space on the page.

a)

True

b)

False

33.

Which of the following is not a property that can hide the visibility of an element?

a)

opacity

b)

hidden

c)

visibility

d)

display

34.

True or False: You will learn everything there is to know about HTML and CSS from CodeHS.

a)

True

b)

False

35.

Who might need to look something up in HTML/CSS documentation?

a)

A student learning about web development

b)

A web developer using a new feature

c)

A person building a personal website as a hobby

d)

All of the above!

36.

The Inspector would be a useful tool for which of the following tasks?

a)

Starting to write the HTML and CSS based on a design

b)

Testing what small CSS changes will do to the site presentation

c)

Finalizing changes made to the styling of the website

d)

All of the above