HTML Flashcards

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?

A

False

17
Q

what do you use for superscript text?

A

sup

18
Q

what do you use for deleted text?

A

del

19
Q

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

A

False

20
Q

li is list. True or false?

A

False. li is list item

21
Q

what do you use for unordered list?

A

ul

22
Q

what do you use to insert an image?

A

img

23
Q

Does img have an end tag?

A

No

24
Q

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

A

src
alt
width
height

25
Q

What is px?

A

pixel

26
Q

Define pixel.

A

A unit of digital image length.

27
Q

How do you insert a link in a webpage?

A

a

28
Q

what is a (a tag)?

A

anchor element

29
Q

what attribute is needed for a to function?

A

href

30
Q

What do you put in href?

A

the url or link

31
Q

What do you put in src attribute?

A

the link or address of the image.

32
Q

What is the common with src and href?

A

They both are necessary. You have to put a link/url to the attributes.