wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

web development

Total questions: 25

Worksheet time: 25mins

Name
Class
Date
1.
What does CSS do?
a)
Styles web elements
b)
Creates interactivity with web elements
c)
Defines web element
d)
Makes webpages
2.
What does CSS stand for?
a)
Cascading Style Sheets
b)
Creative Style Sheets
c)
Cascading Synchronized Styles
3.
What do you call a complete piece of CSS?
a)
Rule
b)
Selector
c)
Declaration
4.
What is the word OUTSIDE of the curly brackets called?
a)
Property
b)
Declaration
c)
Selector
d)
Value
5.
What is the expression INSIDE of the curly brackets called?
a)
Property
b)
Declaration
c)
Selector
d)
Value
6.
A Declaration is made of a...
a)
Selector
b)
Value
c)
Property
d)
Property AND Value
7.
Each declaration ends with a....
a)
:  Colon
b)
;  Semicolon
c)
}  Curly Bracket
8.
Declarations are surrounded with....
a)
{  } Curly Brackets
b)
<  >  Angled Brackets
c)
"  "  Quotation Marks
9.
What is the symbol used to separate a property and a value?
a)
= equal sign
b)
: colon
c)
; semicolon
d)
" quotation marks
10.
What do you call coding CSS in the HEAD of a web page?
a)
Inline
b)
Internal
c)
External
11.
What does HTML do?
a)
Styles web elements
b)
Creates interactivity with web elements
c)
Defines web element
d)
Makes webpages
12.
What does JavaScript do?
a)
Styles web elements
b)
Creates interactivity with web elements
c)
Defines web element
d)
Makes webpages
13.
Why use external CSS rules?
a)
Control multiple HTML pages
b)
Organize your code
c)
Make web pages load faster
d)
All
14.
Why use attached CSS right in the head an HTML document?
a)
To control only THAT web page
b)
To control all pages that HTML page links to
c)
Because you like to do things the hard way
d)
Because you're a rebel
15.
What HTML tag lets you divide your page into sections?
a)
<DIV>
b)
<TABLE>
c)
<IMG>
d)
<P>
16.
Which element can contain images, text, videos, and links?
a)
Table
b)
Regular Div
c)
AP Div
d)
All of them can!
17.

Lucy is creating a website and requires to add a link. However, she would prefer the link to open in a different window so her customers don’t get out of her website. Which attribute should she use?

a)

a Href=”https://...”

b)

Img src=”link”

c)

Target=”-blank"

d)

Title

18.

The (a)   element is a container for metadata and is placed between the <html> tag and the <body> tag. It is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, and <base>

19.

HTML (a)   is data about the HTML document. It’s not displayed on the webpage. Typically defines the document title, character set, styles, and scripts.

20.

The _________ element defines the ________ of the document. It must be text-only, and it is shown in the browser's title bar or in the page's tab.

(a)  

21.

It is the basic structure on an attribute structure.

a)

name="property;value"

b)

name=property:value

c)

name="property:value"

d)

name "property:value"

22.

Lois wants to create a website but doesn’t know where to start. (a)   is the Web authoring language used to create pages that can be viewed by any web browser.

23.

Choose the correct way to set the style of an HTML element.

a)

<tagname style="property;value;">

b)

<tagname style=property:value;>

c)

<tagname style="property:value;">

d)

<tagname style="property=value;">

24.

According to the code, which would the result be?

a)

b)

c)

25.

According to the text, choose the order of tags used to give format to the paragraph

a)

<b>, <i>, <strong>, <em>, <mark>, <small>, <del>, <ins>, <sub>, <sup>

b)

<em>, <del>, <b>, <i>, <mark>, <sub>, <strong>, <sup>, <small>, <ins>

c)

<strong>, <em>, <b>, <i>, <mark>, <sub>, <del>, <ins>, <small>, <sup>

d)

<strong>, <del>, <b>, <i>, <mark>, <sup>, <em>, <small>, <sub>, <ins>