PAGINAS WEB 4TA. CLASE Luis Rojas. Recordemos apagar/silenciar nuestros teléfonos móviles.

24
PAGINAS WEB 4TA. CLASE Luis Rojas

Transcript of PAGINAS WEB 4TA. CLASE Luis Rojas. Recordemos apagar/silenciar nuestros teléfonos móviles.

Page 1: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

PAGINAS WEB 4TA. CLASE

Luis Rojas

Page 2: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Recordemos apagar/silenciar nuestros teléfonos móviles.

Page 3: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Tablas sin bordes http://www.w3schools.com/html/tryit.asp

?filename=tryhtml_tables3

Encabezados de tabla http://www.w3schools.com/html/tryit.asp

?filename=tryhtml_table_headers

Page 4: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Etiquetas dentro de una tabla http://www.w3schools.com/html/tryit.asp

?filename=tryhtml_table_elements

Espaciado de celdas

http://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_cellpadding

Page 6: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Listas ordenadas http://www.w3schools.com/html/tryit.asp

?filename=tryhtml_lists

Variedad de listas ordenadas

http://www.w3schools.com/html/tryit.asp?filename=tryhtml_lists_ordered

Page 8: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Recepción de Datos

Textos http://www.w3schools.com/html/tryit.asp

?filename=tryhtml_input

Usuario y contraseña

http://www.w3schools.com/html/tryit.asp?filename=tryhtml_inputpassword

Page 13: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Meta tag descripcion del sitio y keywords

www.w3schools.com/html/tryit.asp?filename=tryhtml_keywords

Page 14: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Div

<div> </div>

Page 15: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Alta en google https://www.google.com/webmasters/too

ls/submit-url?hl=es

Page 16: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

CSS

Hojas de Estilo en Cascada

Sintáxis básica: Nombre_de_Etiqueta { Instruccion_css: valor ; }

Page 17: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

CSS

Ejemplo

body { color:red; } h1 { Color : red; }

Page 19: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Colores para CSS (hexadecimal)

http://www.colorpicker.com/

Page 20: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Clases CSS

Tipo 1 (clase para un solo tipo de etiqueta)

p.azul{ color: blue; } p.rojo{ color: red; }

<p class="first">This is a paragraph that uses the p.first CSS code!</p>

<p class="second">This is a paragraph that uses the p.second CSS code!</p>

Page 21: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Clases CSS

Tipo 2 (clase para varios tipos de etiqueta) .center { text-align:center; }

<h1 class="center">Center-aligned heading</h1>

<p class="center">Center-aligned paragraph.</p>

Page 23: PAGINAS WEB 4TA. CLASE Luis Rojas.  Recordemos apagar/silenciar nuestros teléfonos móviles.

Imagen de fondo (no del todo recomendado)

http://www.w3schools.com/css/tryit.asp?filename=trycss_background-image

Por ésto:

http://www.w3schools.com/css/tryit.asp?filename=trycss_background-image_bad