Apellido: Fecha: Nombre: ¿Qué entiende por HTML? Hyper Text

Anuncio
Apellido:
Nombre:
¿Qué entiende por HTML?
Hyper Text Mask Language
Hard Text Markup Language
Hyper Text Markup Language
¿Qué etiqueta utilizamos para definir el cuerpo del documento?
<background>
<body>
<b>
¿Qué etiqueta utilizamos para insertar una línea horizontal?
<br>
<hr>
<line>
Elija la etiqueta apropiada para un texto en negrita.
<bold>
<bb>
<b>
¿Cuál es la forma correcta de crear un vínculo?
<a target="http://www.unsitio.com">...</a>
<a href="http://www.unsitio.com">...</a>
<a url="http://www.unsitio.com">...</a>
Fecha:
¿Qué etiqueta define la fila de una tabla?
<tr>
<td>
<row>
¿Qué etiqueta define una lista ordenada?
<ol>
<ul>
<li>
Elija la forma correcta de ingresar una imagen.
<img src="c:\foto.jpg">
<imagen src="c:\foto.jpg">
<img href="c:\foto.jpg">
¿Cómo definimos un color en sistema hexadecimal?
<beige>
<245,245,220>
<#F5F5DC>
¿Qué etiquetas pueden figurar en la sección <head>?
<style>, <meta>, <table>
<link>, <title>, <base>
<link>, <meta>, <p>
¿Cómo mandamos un e-mail a partir de un vínculo?
<a mail="[email protected]">...</a>
<a mailto="[email protected]">...</a>
<a href="mailto:[email protected]">...</a>
¿Cómo definimos un texto alternativo para una imagen?
<img src="c:\foto.jpg" alt="texto alternativo">
<img src="c:\foto.jpg" value="texto alternativo">
<img src="c:\foto.jpg" text="texto alternativo">
¿Qué etiqueta define un salto de línea?
<br>
<break>
<linebreak>
¿Cómo colocamos una imagen de fondo en el cuerpo del documento?
<body bgcolor="...">
<body background="...">
<td background="...">
Elija la etiqueta que nos dá el título más grande
<h1>
<h6>
<head>
¿Cómo hacemos para abrir un vínculo en otra ventana?
<a href="/www.algunsitio.com" new>...</a>
<a href="/www.algunsitio.com" target="_new">...</a>
<a href="/www.algunsitio.com" target="_blank">...</a>
Revisar el siguiente código HTML y agregar las etiquetas faltantes
<html>
<head>
<title> Codigo HTML </title>
</head>
<body bgcolor=yellow>
<h1>
<center> Hola mundo esta es mi primera página web </center>
</h1>
<h2>Practicando con imágenes en mi página</h2>
<br>
<img src="http://www.google.com.ar/imgres?imgurl=http://cdnh.tecnogcdn.com/images/articulos/2012//04/sentey-wolfwork04.jpg&imgrefurl=http://hardware.tecnogaming.com/2012/04/senteywolf/4/&h=721&w=1280&tbnid=weG0PIo2vW5DhM:&docid=UJQgBQ6fDe9y4M&ei=1bPlVdG
AB8SEwgSwq4aYBQ&tbm=isch&ved=0CGAQM" width="200"> </img>
<img
src="http://www.google.com.ar/imgres?imgurl=http://www.cdmarket.com.ar/_NcmsImages.a
spx/original/18147_Revolution_Pro_001.jpg&imgrefurl=http://www.cdmarket.com.ar/View/6
751/mouse-gamer-sentey-revolution-pro-gs3910.aspx&h=1620&w=2880&tbnid=CEREwupBvikZ7M:&docid=uljmEJOrOXj3mM&ei=1bPlVd
GAB8SEwgSwq4aYBQ&tbm=isch&ved=0CFYQMygcMBxqFQoTCJG_mtqD1scCFUSCkAodsJUBU
w" width="200"> </img>
</body>
</html>
Descargar