HTML Flashcards

1
Q

What is HTML?

A

HTML stands for Hyper Text Markup Language. It is a language of World Wide Web. It is a standard text formatting language which is used to create and display pages on the Web. It makes the text more interactive and dynamic. It can turn text into images, tables, links.

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

What are HTML Tags?

A

HTML tags are composed of three things: an opening tag, content and ending tag. Some tags are unclosed tags. HTML tags are used to create HTML documents and render their properties.

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

Do all HTML tags have an end tag?

A

No. There are some HTML tags that don’t need a closing tag. For example: tag, <br></br> tag.

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

What is ‘formatting’ in HTML?

A

The HTML formatting is a process of format the text for a better look and feel. It uses different tags to make text bold, italicized, underlined.

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

How many types of heading does an HTML contain?

A

The HTML contains six types of headings which are defined with the < h1 > to < h6 > tags.

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

How do you create a Hyperlink in HTML?

A

By using an anchor tag (< a >). Then inside the anchor create an ‘href=”www.yourHyperlinkAddressHere.com”’ attribute.

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

Name some of the ways to display data in the tabular form in HTML.

A

List of table HTML elements: table, tr, th , td, caption, colgroup, col. tbody, thead, tfooter.

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

How do you display lists in HTML?

A

by using one of 3 list tags: Unordered List (< ul >), ordered list (< ol >), and Definition List (< dl >, < dt >, and < dd >).

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

How do you create a nested web page in HTML?

A

< iframe > tag is used to display nested webpages in HTML.

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

What does HTTP stand for?

A

Hypertext Transfer Protocol. HTTPS stands for Hypertext Transfer Protocol Secure.

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