HTML Flashcards

(32 cards)

1
Q

When did HTML become public?

A

1991

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

Who invented HTML?

A

Tim Berners-Lee

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

HTML is a programming language. True or False?

A

False. It is a primary/markup language. Not considered a programming language.

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

HTML is used for what?

A

Used to describe the structure of a webpage.

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

What is DTD

A

Doctype declaration.

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

What is DTD for?

A

a declaration that identifies its type.

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

What do you call the text and images on a website?

A

Website content

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

What is Website structure?

A

It is how the content of a website is organized.

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

What is the basic structure?

A

DTD - html - head - body

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

What is a software bug?

A

An error or a flaw in a computer program. A code that does not go as expected.

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

What is debugging?

A

The process of removing or fixing the bugs.

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

b is for bold text. True or false

A

true

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

What element do you use for important text?

A

strong

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

What element do you use for emphasized text?

A

em

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

i is for italic text. True or false?

A

True

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

sub is for superscript text. True or false?

17
Q

what do you use for superscript text?

18
Q

what do you use for deleted text?

19
Q

When you use ol , it comes out as bulleted form. True or false.

20
Q

li is list. True or false?

A

False. li is list item

21
Q

what do you use for unordered list?

22
Q

what do you use to insert an image?

23
Q

Does img have an end tag?

24
Q

What attributes can you put in img tag? List at least 2 attributes.

A

src
alt
width
height

25
What is px?
pixel
26
Define pixel.
A unit of digital image length.
27
How do you insert a link in a webpage?
a
28
what is a (a tag)?
anchor element
29
what attribute is needed for a to function?
href
30
What do you put in href?
the url or link
31
What do you put in src attribute?
the link or address of the image.
32
What is the common with src and href?
They both are necessary. You have to put a link/url to the attributes.