Intro to HTML Reading Day 4 Flashcards

1
Q

what is html?

A

HyperText Markup Language defines the structure of a website semantically and the content that will be rendered by the web browser.

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

what is CSS?

A

Cascading Stylesheets deal with the presentation of content including aspects such as layout, formatting and colors.

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

what is Javascript ?

A

One of the most popular coding languages in the world, brings movement and user interaction to websites.

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

how do you denote HTML elements?

A

using opening and closing tags:

<p>This is an example of a paragraph element in HTML</p>

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

what is an attribute in HTML

A

Attributes receive values in double quotes. The src attribute provides a url to the image tag for the browser to get and render the proper image inside the HTML Element:
<img></img>

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

how do you create a link using an HTML element

A

you use what is called an anchor tag:

<a>App Academy</a>

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