9
 INFORMÁTICA 6° año ETIQUETAS HTML Florencia Rocha

Etiquetas HTML

Embed Size (px)

Citation preview

Page 1: Etiquetas HTML

   

INFORMÁTICA6° año

ETIQUETAS HTML

Florencia Rocha

Page 2: Etiquetas HTML

   

   Demostración de dos etiquetas 

HTML:

● <button>● <hr>

Page 3: Etiquetas HTML

   

Button:

Es un tag HTML,  que su función es la de crear un botón. Basicamente su función es la de realizar acciones (mediante scripts) en cualquier parte. Los botones también pueden ser definidos con el tag HTML input, cuando su tipo es "button", pero el tag HTML button inserta botones que permiten contenido. Esto significa que se puede insertar código HTML dentro de ellos.

Page 4: Etiquetas HTML

   

Códificación:

<html> <head> <title> flo </head> </title>

<body> 

<button>ingrese aquí</button> 

</body></html>

Page 5: Etiquetas HTML

   

Así se ve un botón en un página web...

Page 6: Etiquetas HTML

   

Hr:

El tag HTML hr dibuja una regla o línea  horizontal que puede utilizarse como separador.

Page 7: Etiquetas HTML

   

Codificación: 

<html> <head> <title> flo </head> </title>

<body>

<p> Espacio de prueba: 1</p><hr />

<p> Espacio de pueba: 2</p>

</body></html>

Page 8: Etiquetas HTML

   

Allí se ve la línea de separación entre un texto y otro...

Page 9: Etiquetas HTML

   

Bibliografía:

●http://www.htmlquick.com/es/reference/tags.html