Estilos HTML Flashcards

1
Q

Estilos HTML

A

El atributo HTML stylese utiliza para agregar estilos a un elemento, como color, fuente, tamaño y más.

Ejemplo
soy rojo

Soy azul

Soy grande

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

El atributo de estilo HTML

A

Se puede configurar el estilo de un elemento HTML con el styleatributo.

El atributo HTML styletiene la siguiente sintaxis:

<tagname>
La propiedad es una propiedad CSS. El valor es un valor CSS.

Aprenderá más sobre CSS más adelante en este tutorial.
</tagname>

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

Color de fondo

A

La propiedad CSS background-colordefine el color de fondo de un elemento HTML.

Ejemplo
Establezca el color de fondo de una página en azul polvo:

<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>

Ejemplo
Establezca el color de fondo para dos elementos diferentes:

<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>

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

Color de texto

A

La propiedad CSS colordefine el color del texto de un elemento HTML:

Ejemplo

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

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

Fuentes

A

La propiedad CSS font-familydefine la fuente que se utilizará para un elemento HTML:

Ejemplo

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

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

Tamano del texto

A

La propiedad CSS font-sizedefine el tamaño del texto de un elemento HTML:

Ejemplo

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

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

Alineación del texto

A

La propiedad CSS text-aligndefine la alineación horizontal del texto para un elemento HTML:

Ejemplo

<h1>Centered Heading</h1>

<p>Centered paragraph.</p>

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

Resumen del capítulo

A

Utilice el styleatributo para diseñar elementos HTML
Usar background-colorpara color de fondo
Usar colorpara colores de texto
Usar font-familypara fuentes de texto
Usar font-sizepara tamaños de texto
Usar text-alignpara alineación de texto

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