wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

HTML AND CSS

Total questions: 75

Worksheet time: 1hrs 3mins

Name
Class
Date
1.

The markup or formatting language used to create pages on the web.

(a)  

2.

What does HTML mean?

(a)  

3.

It is a type of communications protocol.

It is used to send and receive web pages on the Internet and the foundation of data communications for the World Wide Web.

(a)  

4.

What does HTTP mean?

(a)  

5.

What does WWW mean?

(a)  

6.

A kind of web address that is unique and is used to identify resources on the web.

Can be found in the address bar at the top of the web pages.

https://www.microsoft.com

(a)  

7.

What does URL mean?

(a)  

8.

What are the 3 Basic Parts of URL?

a)

Source, Domain Name, Protocol

b)

Resource, Name, Protocol

c)

Protocol, Domain, Path

d)

Protocol, Domain Name, Resource Path

9.

Instruct how a web browser should communicate when sending and receiving web pages and other files with a web server.

http://www.example.com/index.html

(a)  

10.

Identifies the organization that is directly responsible for the information.

It is the web page that you are searching.

http://www.example.com/index.html

(a)  

11.

This is the name of the file of the web page and any directories under which it is stored on a specified server or computer.

http://www.example.com/index.html

(a)  

12.

Can also be a series of numbers or also known as IP address, that works the same way as the standard (a)   .

13.

A series of numbers that works the same was as a standard URL.

(a)  

14.

<!doctype>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

15.

<blockquote>

</blockquote>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

16.

<font color = "_____">

</font>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

17.

<font face = "_____">

</font>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

18.

<font size = "_____">

</font>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

19.

<mark>

</mark>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

20.

<pre>

</pre>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

21.

<small>

</small>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

22.

<strike>

</strike>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

23.

<sub>

</sup>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

24.

<tt>

</tt>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

25.

<br/>

a)

Structural Tag

b)

Formatting Tag

c)

Entity

26.

&copy;

a)

Structural Tag

b)

Formatting Tag

c)

Entity

27.

&deg;

a)

Structural Tag

b)

Formatting Tag

c)

Entity

28.

&percent;

a)

Structural Tag

b)

Formatting Tag

c)

Entity

29.

&reg;

a)

Structural Tag

b)

Formatting Tag

c)

Entity

30.

Give the code asked:

(without <> or /)

Used to indicate that a section of text is a quotation from another source.

(a)  

31.

Give the code asked:

(without <> or /)

Tells a web browser what version of HTML a page is written in.

(a)  

32.

Give the code asked:

(without <> or /)

Changes the color of your text.

(a)  

33.

Give the code asked:

(without <> or /)

Changes the font or face of your text.

(a)  

34.

Give the code asked:

(without <> or /)

Changes the size of your text.

(a)  

35.

Give the code asked:

(without <> or /)

Used to emphasize text that was not emphasized in the original content.

(a)  

36.

Give the code asked:

(without <> or /)

Displays preformatted text, preserving spaces, line breaks, and tabs exactly as written in the HTML code.



(a)  

37.

Give the code asked:

(without <> or /)

Makes text smaller than the default text size on a page.

(a)  

38.

Give the code asked:

(without <> or /)

Creates a line through text in HTML.

Example

(a)  

39.

Give the code asked:

(without <> or /)

Defines a subscript text.

Appears half a character below the normal line, and is sometimes rendered in smaller font.

H2o

(a)  

40.

Give the code asked:

(without <> or /)

Defines superscript text.

Superscript text appears half a character above the normal line, and is sometimes rendered in a smaller font.

x2 - y3

(a)  

41.

Give the code asked:

(without <> or /)

Typewriter font.

(a)  

42.

Give the code asked:

(without <>)

Inserts a single line break.

(a)  

43.

Give the code asked:

(without <>)

Inserts a single line break.

(a)  

44.

Give the code asked:

(without <>)

Copyright

(a)  

45.

Give the code asked:

(without <>)

Percent

(a)  

46.

Give the code asked:

(without <>)

Registered Mark

(a)  

47.

Used to define the visual presentation of web pages.

Used to used to style and make the website visually appealing.

(a)  

48.

Builds the structure of a website.

(a)  

49.

What does CSS mean?

(a)  

50.

What is the anatomy of CSS?

a)

Selector

b)

Property

c)

Value

d)

Class

e)

Price

51.

It is what you want to style in CSS.

.logo .body .card

(a)  

52.

The style you want to change in CSS.

color, font-size, margin

(a)  

53.

What you want to set for that property in CSS.

blue, #fff, 15px

(a)  

54.

What are the 3 ways to apply CSS?

a)

Inline CSS

b)

Internal CSS

c)

External CSS

d)

Outline CSS

55.

Adding CSS directly to the HTML element using the style attribute.

(a)  

56.

Placing CSS rules inside the <style> tag in the head of the HTML file.

(a)  

57.

Using an external stylesheet file with a .css extension.

This is the best way to organize your CSS when you work on larger projects.

(a)  

58.

What are the Types of CSS Selectors?

a)

Class Selector

b)

ID Selector

c)

Type Selector

d)

Value Selector

59.

A kind of selector that targets all instances of an element.

(a)  

60.

A kind of selector that targets elements with a specific class.

(a)  

61.

A kind of selector that targets a specific element with an ID.

(a)  

62.

Identify what type of selector it is:

a)

ID Selector

b)

Class Selector

c)

Type Selector

63.

Identify what type of selector it is:

a)

ID Selector

b)

Class Selector

c)

Type Selector

64.

Identify what type of selector it is:

a)

ID Selector

b)

Class Selector

c)

Type Selector

65.

What way of applying CSS is this?

a)

Inline CSS

b)

Internal CSS

c)

External CSS

66.

What way of applying CSS is this?

a)

Inline CSS

b)

Internal CSS

c)

External CSS

67.

What way of applying CSS is this?

a)

Inline CSS

b)

Internal CSS

c)

External CSS

68.

Every element in HTML is treated as a (a)   which consists of 4 main parts.

69.

What are the parts of a Box Model?

a)

Content

b)

Padding

c)

Border

d)

Margin

e)

Radius

70.

A part of a box model that is the actual text or images in the website.

(a)  

71.

A part of a box model that is the space around the content in the website.

(a)  

72.

A part of a box model that is the line that surrounds the padding in the website.

(a)  

73.

A part of a box model that is the space around the border in the website.

(a)  

74.

A layout model that helps you align and distribute space among items in a container.

It's great for responsive designs.

(a)  

75.

What is this?

(a)