HTML Flashcards

1
Q

What does HTML stand for?

A

Hypertext markup language

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

What is generated from the following HTML code:

<h1>Hello</h1>

<h3>>Hello</h3>

<h6>Hello</h6>

A

Large, Hello
medium, Hello
small, Hello

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

Which of the following best describes the difference between the domain and path of a URL?

A

The domain specifies where the browser’s request should be sent. The path specifies exactly what file is being requested.

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

What is the proper format for an HTML tag?

A

Content Affected by Tag

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

What is the domain of this URL:

www.example.com/home.html

A

www.example.com

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

Which of the following classifies as metadata about a webpage?

A

The title of the webpage

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

What is the result of the following HTML code:

<ol>
    <li>Bread</li>
    <li>Milk</li>
    <li>Eggs</li>
</ol>
A
  1. Bread
  2. Milk
  3. Eggs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

An image is hosted at

https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg
Which of the following is the proper HTML code to display this image on your webpage?

A

<img></img>

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

Suppose you have written a web page using HTML and it is hosted at the URL yourdomain.com/home.html

Which devices can view your website?

A

Any browser on any device will be able to view your webpage, because all browsers and devices on the Internet agree to use the same protocols for sending, receiving, and viewing webpages.

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

What are the table tags in general and in order?

A

Title
Artist
Length

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