HTML Flashcards

1
Q

What does HTML stand for?

A

The HyperText Markup Language (HTML) programming language

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

What does HTML do?

A

Through HTML, browsers display text or load elements, rendering webpages, which contain hyperlinks and links to other webpages, for users.

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

Is HTML the building block for front-end development?

A

Yes

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

What dose HTML define?

A

The structure and meaning of web content.

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

How does HTML assist browsers ?

A

By displaying text or load elements, and rendering webpages: which contain hyperlinks and links to other webpages, for users.

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

How can we use imagery to explain HTML?

A

HTML is the structure of a house, …CSS is the interior and exterior decor, ….and JavaScript is the electricity, water system etc that make the house livable.

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

What are HTML TAGS?

A

TAGS: create headings, paragraphs, bolded words, italicized words, and more

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

What is this an example of <p>

A

Opening tag

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

What is this an example of </p>

A

Closing tag

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

What are HTML attributes?

A

attributes are placed in the opening tag and range from style and ids to classes.

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

What else do HTML Attributes do?

A

They take values: to convey information about the element and help things do styling and manipulation with JavaScript.

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

Explain this :

A

The opening tag contains a class attribute with a value of “text”

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

what is this ?

A

It is a basic HTMl page

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

Explain this: <!Doctype html>

A

Specifies that we’re using HTML5 in this code.

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

Explain this: <html></html>

A

top-level element of every HTML document.

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

Explain this: <head></head>

A

one of the most crucial parts of the HTML document: contains info such as the page title, stylesheets, meta information

17
Q

Explain this: <meta></meta>

A

this is an empty element that conveys meta-information about the page. Such information may include the author, compatibility etc

18
Q

Explain this: <title></title>

A

defines the title of the web page.

19
Q

Explain this: <body></body>

A

all the content of the HTML document is located inside the body tag.

20
Q

Explain: Semantic HTML

A

means that your HTML tags convey the actual meaning of what they are used for. Examples are: <header>, <nav>, <main>, <section>, <footer> and <article>

21
Q

Lets see an example of semantic HTML:

A

Can you review the different elements

22
Q
A