Web Design and Development (Implementation: HTML) Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What does HTML stand for?

A

Hyper Text Mark-Up Language

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

What is displayed at the start of the document, to tell the computer that it is a HTML file?

A

[!DOCTYPE html]

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

How do we start and end a tag?

A

[tag] and [/tag]

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

What does the [title] tag do?

A

The [title] tag is used to display the name of the webpage (what appears in the tab of the page when it is run)

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

What does the [body] tag do?

A

The [body] tag is used to display all of the content that the sees when they use the webpage (eg. text, images, videos, hyperlinks)

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

What are the tags used to introduce text?

A

[p] [/p] (paragraph)

[h1] [/h1] (heading)

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

Which tag is used to style on specific piece of text?

A

[div] [/div]

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

What does the [p] tag do?

A

The [p] tag is used to show that there is a new paragraph of text

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

What does the [h1] tag do?

A

The [h1] tag is used to create a heading on the page

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

How do we construct a URL tag?

A

[a href=”LINK”] LINK TEXT [/a]

This would display “LINK TEXT” and would lead to “LINK”

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

How do we construct an image tag?

A

[img src= “IMAGE LINK.jpeg” alt=”DESCRIPTION”]

This would display an image called “IMAGE LINK.jpeg”

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

How can we edit the size of an image?

A

We can edit the size of an image by adding:

[… height=”X” weight=”Y”]

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

What does the [head] tag do?

A

The [head] tag displays all relevant information about the webpage such as links to CSS or JavaScript files

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

What does the [html] tag do?

A

The [html] tag starts and end the HTML document

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