ICT - L3-L4 Flashcards

1
Q

(i)meaning of html

A

hypertext markup language

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

the most widely used language for creating web pages

A

html

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

the link available on a web page

A

hypertext

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

(h) father of world wide web

A

Tim Berners-Lee

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

Describe Tim berners-lee

A

father of www, created html in late 1991

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

1995 html

A

html 2.0 html 3.0

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

197 html

A

html 3.2 html 4.0

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

1997, w3c

A

html 3.2, world wide web consortium

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

1999 html

A

html 4.01

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

2014 html

A

html5

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

2016 html

A

html5.1

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

2017 html

A

html5.2

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

default text editor for windows

A

notepad

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

a free source code editor

A

notepad++

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

enumerate all parts of notepad

A

title bar, tab bar, line number, text area, status bar, menu bar, toolbar

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

enumerate all basic commands

A

open a file
save a file
close a file
exit notepad ++

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

a convenient tool used to save all files

A

save as

18
Q

a docu format that tells a computer how to display a web page

A

HTML

19
Q

file name extension of an HTML

A

htm/html

20
Q

not an html tag but an instruction the web browser

A

<!DOCTYPE>

21
Q

contains the header info about the docu

A

<head> </head>

22
Q

elements

A

html
head
body

23
Q

building blocks of web page

A

elements

24
Q

two tags that make up an element

A

opening/start tag
closing/end tag

25
Q

often referred to as elements

A

tags

26
Q

corresponding closing tags

A

container tags

27
Q

defines the document type

A

<!DOCTYPE>

28
Q

contains web page content

A

<body>
</body>

29
Q

contains docu header info

A

<head>
</head>

30
Q

encloses the complete html docu

A

<html>
</html>

31
Q

specifies the title for the docu

A

<title>
</title>

32
Q

provides additional info about the content/s of an element

A

attributes

33
Q

2 parts of attributes

A

attribute name
value
(separated by an equal sign)

34
Q

describes more abt the body element, specifies the background color

A

bgcolor

35
Q

meaning of CSS

A

Cascading Style Sheet

36
Q

refers to tags and attributes that are not anymore recommended by w3c to be used

A

deprecated

37
Q

L4
enumerate the 5 basic tags

A

heading tag
paragraph tag
line break tag
preformatted tag
horizontal rule tag

38
Q

how many headings are there

A

6

39
Q

syntax of the basic tags

A

<h1> <h6>
<p>
<br></br>
<pre>
<hr></hr>
</pre></p></h6></h1>

40
Q

to add spaces to our texts we use?

A
41
Q

used to insert comments in the HTML Source codes

A

COMMENT TAG