HTML Flashcards

(23 cards)

1
Q

What does HTML stands for?

A

Hypertext Markup Language

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

What type of language is HTML?

A

Markup Language and NOT a programming language

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

What are the 3 parts of an URL?

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

What does URL stands for?

A

Uniform Resource Locator

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

What are the 3 types of protocols?

A
  1. HTTP- Hypertext Transfer Protocol
  2. HTTPS - Secure Hypertext Transfer Protocol
  3. FTP - File Transfer Protocol
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the domain in those URL?

  1. http://www.intro-webdesign.com/HTML/page2.html
  2. https://www.shopify.com/tools/domain

3.https://classroom.google.com/c/NjEzMTQ5NDg2NzU3/m/NjE0MTM5NzI2MDM2/details

A
  1. intro-webdesign.com
  2. shopify.com
  3. classroom.google.com
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the protocol in this URL?

http://www.intro-webdesign.com/HTML/page2.html

A

http
(https also is considered as a protocol)

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

What is the top-level domain in this URL?

http://www.intro-webdesign.com/HTML/page2.html

A

.com

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

An HTML document consist of what?

A

set of tags

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

What is the role of W3C?

A

The W3C is the organization that sets standards for the web

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

what are the 3 parts of a well-formed HTML document?

A
  1. doctype
  2. head
  3. body
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Explain briefly what is a scripting language?

A

1.a language that integrate and communicate with other
programming languages.
2. All scripting languages are programming languages
3.Interpreted at runtime and not compiled
4. It is less code intensive as compared to traditional programming languages
5. JavaScript, PHP, ASP,

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

What is programming language?

A
  1. It is use to develop software programs, scripts, or
    other sets of instructions for computers to execute.
  2. It is coded, compiled and interpreted before being execute
  3. example; java, c++
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is markup language?

A
  1. designed for the processing, definition and presentation
    of text.
  2. Not a programming language
  3. Read and rendered by the browser
  4. describe the data and formatting in a textual format.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The tag <p>….</p> stands for?

A

The start and the end of a paragraph.

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

The tag <strong>…. </strong> stands for?

A

The start and end of bold characters.

17
Q

The tag <br></br> is for?

A

To break a line in a paragraph.

18
Q

The tag <h> is for?</h>

19
Q

True or False.

<h1> heading being of highest importance and <h6> being of least
importance.
</h6></h1>

20
Q

What is an inline element?

A

Inline as the name says “included as a part of the main text and not as a
separate section”. By default, Inline elements do not begin on new lines.

21
Q

Give 5 examples of an inline element?

A

<a>
<span>
<img></img>
<strong>
<code>
<cite>
<button>
<input></input></button></cite></code></strong></span></a>

22
Q

What is a block element?

A

Block elements will always start with a new line, and margins are added automatically before and
after the element by the browsers.

23
Q

Give 5 examples of a block element?

A

<p>
<div>
<h1>
<h4>
<header>
<table>
</table></header></h4></h1></div></p>