Codigos HTML

2
Archivo CSS, scrip: ------------------------------------------------------------ http://necolas.github. io/normalize.css/ //Archivo css http://modernizr.com/d ownload/ //Archivo scrip https://www.google.com /fonts/ // Fuentes de letra ------------------------------------------------------------ Diseño responsive desing ------------------------------------------------------------ @media screen and (min-width: 480px){ } @media screen and (min-width: 767px){ } @media screen and (min-width: 950px){ } ------------------------------------------------------------ Estructura : ------------------------------------------------------------ <!DOCTYPE html>  <html>  <body>  </body>  </html> ------------------------------------------------------------ Cabecera (Antes del "<body>" y despues de "<html>") : ------------------------------------------------------------ <head>  <title>Escribe aqui el titulo</title> </head> Parrafo : ------------------------------------------------------------ <p>Escribe aqui el parrafo</p> Titulos : ------------------------------------------------------------ <h1>Escribe aqui el titulo 1</h1> <h2>Escribe aqui el titulo 2</h2> <h3>Escribe aqui el titulo 3</h3> <h4>Escribe aqui el titulo 4</h4> <h5>Escribe aqui el titulo 5</h5> <h6>Escribe aqui el titulo 6</h6> Comentario y salto de linea y linea : ------------------------------------------------------------ <!-- Escribe aqui el comentario --> <br/> //Salto de linea <hr/> // linea Texto en negrita : ------------------------------------------------------------ <b>Escribe aqui el texto en negrita</b> <span>Escribe aqui el texto en negrita</span> <strong>Escribe aqui el texto en negrita</strong>

Transcript of Codigos HTML

7/18/2019 Codigos HTML

http://slidepdf.com/reader/full/codigos-html-56d753e1216e3 1/2

Archivo CSS, scrip:------------------------------------------------------------http://necolas.github.io/normalize.css/ //Archivo csshttp://modernizr.com/download/ //Archivo scriphttps://www.google.com/fonts/ // Fuentes de letra------------------------------------------------------------

Diseño responsive desing------------------------------------------------------------@media screen and (min-width: 480px){}

@media screen and (min-width: 767px){}

@media screen and (min-width: 950px){

}------------------------------------------------------------

Estructura :------------------------------------------------------------<!DOCTYPE html>

  <html>  <body>  </body>  </html>------------------------------------------------------------

Cabecera (Antes del "<body>" y despues de "<html>") :------------------------------------------------------------<head>  <title>Escribe aqui el titulo</title></head>

Parrafo :

------------------------------------------------------------<p>Escribe aqui el parrafo</p>

Titulos :------------------------------------------------------------<h1>Escribe aqui el titulo 1</h1><h2>Escribe aqui el titulo 2</h2><h3>Escribe aqui el titulo 3</h3><h4>Escribe aqui el titulo 4</h4><h5>Escribe aqui el titulo 5</h5><h6>Escribe aqui el titulo 6</h6>

Comentario y salto de linea y linea :

------------------------------------------------------------<!-- Escribe aqui el comentario --><br/> //Salto de linea<hr/> // linea

Texto en negrita :------------------------------------------------------------<b>Escribe aqui el texto en negrita</b><span>Escribe aqui el texto en negrita</span><strong>Escribe aqui el texto en negrita</strong>

7/18/2019 Codigos HTML

http://slidepdf.com/reader/full/codigos-html-56d753e1216e3 2/2

Agregar enlace :------------------------------------------------------------<a href="Escribe aqui la direccion URL o la direccion de archivo">Has click aqui para ver el enlace</a>Escriber el siguiente atributo para abrir los enlaces en pestañas distintas:target="_black" // entre "a" y "href"