HTML: Estructuras Flashcards

1
Q
<a href="http://www.codecademy.com">
  Visit this site
</a>

<a href="http://www.codecademy.com">
  <img src="logo.jpg">
    Click this image
</a>
A

La etiqueta ancla <a> se utiliza para colocar enlaces en la página. El primer ejemplo es de un enlace de texto y el segundo es de un enlace de imagen.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
<!DOCTYPE html>
<html>
  <head>
    <!-- Metadata here-->
  </head>
</html>
A

La etiqueta <head> es de tipo metadato que contiene información general de la página.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
<a href="https://www.google.com" target="_blank">
  Click me
</a>
A

El atributo target indica la acción que se llevará a cabo al darle clic al enlace del ancla. El valor _blank indica que el enlace se abrirá en una nueva pestaña.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
<div>
  <p id="id-of-element-to-link-to">A 
   different part of the page!</p>
</div>

<a href="#id-of-element-to-link-to">
  Take me to a different part of the page
</a>
A

Al colocar un # seguido de un identificador en el atributo href, el enlace nos manda al elemento que tenga ese identificador.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
<!-- Soy un comentario -->
A

Sintaxis de un comentario.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
<!DOCTYPE html>
<html>
  <head>
    <title>Title of the HTML page</title>
  </head>
</html>
A

La etiqueta <title> indica el texto que aparecerá como título en la ventana del navegador.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
<a href="https://developer.mozilla.org/en-US/docs/Web">
  The URL for this anchor element is an 
  absolute file path.
</a>

<a href="./about.html">
  The URL for this anchor element is a 
  relative file path.
</a>
A

Sintaxis de un enlace absoluto y de un enlace relativo.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
<!DOCTYPE html>
A

Le indica al navegador qué tipo de documento esperar.

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