HTML Flashcards

1
Q

Give five Examples of HTML Element Tags

A
paragragh,
h1,
h2,
header,
body
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Give five Examples of HTML Element Tags

A

<p> </p>

<h1> <h2> etc.</h2></h1>

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

Where do you put non-visable content about the HTML Document

A

Within the tag

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

Where do you put visible content about the HTML document?

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

Where do the and tags go in a valid HTML Document

A

first then

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

What is the purpose of a declaration

A

It is to tell the browser which HTML it is working with since there are different types of HTML

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

What is the purpose of HTML Attributes

A

to provide additional information on HTML elements.

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

Where do you put non-visable content about the HTML Document

A

Within the tag

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

Where do you put visible content about the HTML document?

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

Where do the and tags go in a valid HTML Document

A

first then

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

What is the purpose of a declaration

A

It is to tell the browser which HTML it is working with since there are different types of HTML

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

Give an example of an HTML entity (escape characters)

A

© to show the ‘Copyright’ symbol

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

What HTML tag is used to link to another website?

A

the anchor tag [<a>]</a>

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

What is an absolute URL

A

It is a URL that goes AWAY from your website

ex. https://www.google.com

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

What is a relative URL

A

Is something that would navigate within your website

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

How do you indicate the relative link to a parent directory?

A

<a></a>

17
Q

How do you indicate the relative link to a child directory?

A

<a></a>

18
Q

How do you indicate the relative link to a grand parent directory?

A

<a></a>

19
Q

How do you indicate the relative link to the same directory?

A

You would just use the file name.

<a></a>

20
Q

What is the purpose of an HTML form element?

A

To collect Data from any visitors from your website, it also gives other functionalities as well like searching the website.

21
Q

Give five examples of form control elements.

A
Text Area  
Text input 
Radio Buttons 
Drop down Boxes  
Check Boxes
22
Q

Give three examples of type Attributes

A

Text input
Radio Buttons
Check Boxes

23
Q

Is an HTML element a block element or an inline element?

A

Inline Element

24
Q

What are the six primary HTML Elements for creating tables?

A
25
Q

What purpse do the [thead] and [tbody] elements serve?

A

[thead} is the Headings of the table

[tbody] is the body, or information/data shown, for the table

26
Q

Give two examples of data that would lend itself well to being displayed in a table?

A

Revenue and customer information.