HTML Fundamentals <3 Flashcards

1
Q

script

A

Se utiliza para incrustar datos del lenguaje de programación JavaScript dentro de un documento HTML.

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

noscript

A

Define un contenido alternativo que se mostrará a los usuarios que no tienen scripts habilitados o sus navegadores no admiten scripts.

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

¿Dónde va la etiqueta noscript?

A

Se coloca debajo de la cerradura del

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

style

A

Se utiliza para definir la información de estilo (CSS) de un documento.

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

¿Cuáles son los tres tipos de estilos?

A
  1. Inline style
  2. Internal style
  3. External style
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the precedence of CSS

A

Primero obedece al estilo en línea, si no hay, obedece al estilo interno y si tampoco hay, obedece al estilo externo.

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

What are the meta tags?

A

Los metadatos son información relevante sobre nuestro documento que no se mostrará en el navegador.

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

meta charset

A

Se utiliza para que nuestra página pueda mostrar cualquier tipo de caracteres, como la “ñ”

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

meta description

A

It´s brief summary or description of our website

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

meta keywords

A

Especifica una lista de palabras claves de nuestra website, estas palabras aparecerán al momento que el usuario las busque en el navegador.

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

meta author

A

Define el nombre del autor de la página web.

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

meta viewport

A

Brinda al navegador instrucciones sobre cómo controlar las dimensiones de la página.

Nos ayuda a que sea más responsive y se adapte a la pantalla de cualquier dispositivo.

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

What is the syntax for the meta viewport?

A

meta <strong>name</strong>=”viewport” <strong>content</strong>=”<i>width=device-width, initial-scale=1.0</i>”

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

What are the main attributes of the meta tag?

A
  1. name and content (for the majority)

2. charset (meta charset)

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

translate

A

We use this attribute to specify whether we want to translate something or not.

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

what are the two values for the translate attribute?

A

“yes”

“no”