HTML Document Standards Flashcards

Learn HTLM code academy courses.

1
Q

which declaration you have to use to let it know web browser that you are using HTML?

A

This declaration is an instruction, and it must be the first line of code in your HTML document. It tells the browser what type of document to expect

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

What tags does it use to create HTML structure and content?

A

() Anything between this tags will be interpreted as HTML code. The tags that enclose all of your HTML code

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

What is the use of the head tags?

A

he element is part of this HTML metaphor. It goes above our element and gives the browser some information about the page itself (Metadata).

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

What is metadata?

A

Metadata is information about the page that isn’t displayed directly on the web page.

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

What kind of metadata about the web page can the element contain?

A

Metadata typically define the document title, character set, styles, links, scripts, and other meta information.

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

what tags do you use to link to other websites?

A

You can add links to a web page by adding an anchor tags element <a> and including the text of the link between the opening and closing tags.</a>

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

what is the function of (href=””) in <a> tags ?</a>

A

“href” attribute. This attribute stands for hyperlink reference and is used to link to a path, The paths provided to the href attribute are often URLs.

Ej: <a>This Is A Link To Wikipedia</a>

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

what is the function of ( target=””) attribute in <a> element?</a>

A

The target attribute specifies how a link should open.

Ej: <a>The Brown Bear</a>

this will open the link in other pages.

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

What is a relative path?

A

A relative path is a filename that shows the path to a local file, tells the browser to look for the file in the current folder.

Ej: <a>Contact</a>

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

which syntax do you use for writing a comment in HTML code?

A

() use this syntax for add a comment to your HTML code.

Ej:

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

what is the function to use anchor tags <a>?</a>

A

Anchor tags (<a>) are used to link to internal pages, external pages or content on the same page.</a>

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