Prelims Flashcards

1
Q

The language uses tags to define what manipulation has to be done on the text

A

HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When was HTML first released?

A

1993

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When was HTML5 released?

A

2014

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

HTML uses predefined ___ and ___ that tell the browser how to properly display the content

A

tag and element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

This declares the document as being an HTML document

A

<!DOCTYPE html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

HTML root element

A

<html>
</html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Contains the title of the webpage that you are viewing

A

<title>
</title>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Encloses all the visible content of a webpage

A

<body>
</body>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Inserts styling to your webpages

A

<style>

</style>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

These are used to create and modify web pages

A

HTML editors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Give examples of html text editors

A

Notepad, Brackets, Sublime Text, Atom, Visual Studio Code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Highlights added on inserted text

A

<ins></ins>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Creates subscript text

A

</sub>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Emphasizes text with importance, often in bold

A

<strong></strong>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Display text in a bold format

A

<b></b>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Accountants text with background highlight

A

<mark></mark>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Strikes through text to signify deletion

A

<dell>
</dell>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Adds emphasis to text

A

<em></em>

19
Q

Formats text as superscript

A

20
Q

Creates subscript text

A

21
Q

How many levels of HTML heading tag are there

A

six

22
Q

attributes used to adjust the width and height of an image

A

width and height

23
Q

provides unique identification to an element

A

id

24
Q

Used to explain an element on hovering the mouse over it

A

Title

25
Q

Different color formats:

A

RGB, HSL, RGBA, HSLA

26
Q

Shade that appears behind the content on a webpage

A

Background color

27
Q

Example of inline CSS code:

A

<p> </p>

28
Q

Connections from one web resource to another

A

Links

29
Q

Two ends of a link

A

Anchor and direction

30
Q

This directs users to a resource, such as a webpage, image, or document, located on a different website or domain

A

External Links

31
Q

Link whose target destination is on the same website

A

Internal Links

32
Q

An unvisited link appears __ by default

A

underlined and blue

33
Q

A visited link appears

A

underlined and purple

34
Q

An active link appears

A

underlined and red

35
Q

Specifies the location where the link is opened

A

Target attribute

36
Q

Opens in a new browser

A

_blank

37
Q

Opens in the same window

A

_self

38
Q

Opens in the full body of the window

A

_top

39
Q

Opens in the parent frame

A

_parent

40
Q

Can be used to jump to specified portion of a webpage

A

Bookmark

41
Q

This does not have a closing tag

A

<img></img>

42
Q

Specifies the path to the image

A

src

43
Q

Specifies an alternate text for the image

A

alt

44
Q
A