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

19
Q

Formats text as superscript

20
Q

Creates subscript text

21
Q

How many levels of HTML heading tag are there

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

24
Q

Used to explain an element on hovering the mouse over it

25
Different color formats:
RGB, HSL, RGBA, HSLA
26
Shade that appears behind the content on a webpage
Background color
27
Example of inline CSS code:

28
Connections from one web resource to another
Links
29
Two ends of a link
Anchor and direction
30
This directs users to a resource, such as a webpage, image, or document, located on a different website or domain
External Links
31
Link whose target destination is on the same website
Internal Links
32
An unvisited link appears __ by default
underlined and blue
33
A visited link appears
underlined and purple
34
An active link appears
underlined and red
35
Specifies the location where the link is opened
Target attribute
36
Opens in a new browser
_blank
37
Opens in the same window
_self
38
Opens in the full body of the window
_top
39
Opens in the parent frame
_parent
40
Can be used to jump to specified portion of a webpage
Bookmark
41
This does not have a closing tag
42
Specifies the path to the image
src
43
Specifies an alternate text for the image
alt
44