HTML & CSS Flashcards

1
Q

block element

A

Ocupan todo el ancho disponible
Inician en una nueva línea

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

inline element

A

Ocupan solo el espacio necesario
No inician en una nueva línea

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

Inline-block element

A

Ancho y alto como un bloque
No generan una nueva linea

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

header
article
section

A

<header>.....</header>

<article>.....</article>

<section>....</section>

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

aside

A

<aside>...</aside>

for ads, extra content, glossary entries

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

Ordered list
Unordered list

A

<ol>
<li> .....</li>
</ol>

<ul>
<li>.....</li>
</ul>

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

Imagen
(self close)

A

<img
src=” ….”
alt=”—text image description—”
width=””
height=” “

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

paragraph

A

<p> ...</p>

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

short text

A

<span> …</span>

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

Main Container element
comes after the head

A

<body> ...</body>

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

links

A

<a>….</a>

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

Navigational element

A

<nav>....</nav>

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

Collecting data

A

<form>
</form>

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

Defines how data is sent

A

method=”GET”
Visible in the URL, useful for searches
method=”POST”
Data hidden, for sensible data

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

Example for form with method

A

<form>
</form>

submit.pgp

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

Probides a text label for the input field
Regarding to form action(comes in the next line after this one)

A

Example:
<label for “username”>Username:</label>

17
Q

<input></input> self closing
type: defines the input type (text, password, email, etc)

A

<input type=” ..” id=” ..” name=” ..”requiered>
required: Ensures users fills out the field before submussion

18
Q

target element goes in the same line as action and method (form)

“_self” / (default) same tab
“_blank” / (New tab)

A

<form>
</form>

19
Q

Search bar synthax

A

<form>
<input></input>
<button> Search</button>
</form>

20
Q

Citation and quotation elements

A

<cite>
<q> quote></q></cite>

<blockquote>
</blockquote>

21
Q

<cite> …</cite> element

A

Used to reference a creative work, author or resource

<p>The book<cite><a>Steve Jobs<a></a></cite>is truly inspirational</p>
</a></cite></p>

22
Q

<q>…</q> element

A

Dialogue or prose is quoted in line, within other text (by default the browser will insert the proper quotation marks for us)

<p>Steve Jobs once said, <q>One home run is much better than 2 doubles</q></p>

23
Q

<bloquequote> .....</bloquequote>

A

To quote a large block of text that comes from an external source and spans several lines

24
Q

Creating lists
*( Start attribute)

A

By default in ordered lists the browser gives a number to each item.
So start attribute defines the number from which and ordered
should start.

<ol>
<li>blue</li>
<li>green</li>
<li>red</li>
</ol>

30.blue
31.green
32.red

25
Q

Creating list
*Reversed attribute

A

<ol> ..</ol>

It will do a list appear in reverse order

26
Q

Creating list
*Value attribute

A

It must be used on an individual <li> element within and ordered list to change its value within the list

<ol>
<li>cat</li>
<li>dog</li>
<li>fish</li>
<li>bird</li>
</ol>

1.cat
2.dog
9.fish
10.bird

*The number appearing below a list item with a value attribute will be recalculated accordingly

27
Q

Description List

A

Requieres 2 block-level elements

<dt>..</dt>

Description term element

<dd>..</dd>

Description element

28
Q

Adding an audio

A

<audio></audio>

29
Q

Audio attributes

A

Boolean attributes:

Autoplay
Controls
Loop
—————-
Preload

30
Q

Audio attribute: Autoplay

What happen when is present on the <audio> element</audio>

A

Nothing will appear on the page, but the audio file will automatically play upon loading

31
Q

Audio attribute: Controls

A

Will display by default audio controls: play & pause, seek and volume controls

32
Q

Audio attribute: Preload

What it helps for?
What values does it have?

*When preload attribute isn´t present on the <audio> element, all the info about the audio file is loaded</audio>

A

Helps to identify what if any information about the audio file should be loaded before the clip is playing

Values:
*None: Any information

*Auto: All info about an audio file

*Metadata: Preload just some info