Learn HTML

The language for building web pages.

HTML is a programming language, in this language websites are developed.
Yes! this site is written in HTML and other languages how to Javascript.

HTML is one of the languages of programming with more instructions and more easier to learn.
The basic tags in this language are:
<html> </html> This tags are the start and end of the site.
<head> </head> This part of the site contains especially design of the site and also contain the title of the site, language in which it is written (English, Spanish, etc...) among others.
<body> </body> This part of the site is the main contain, in this part it is written their articles, post, tutorials, etc...

The format in which the previous tags are used is the following:

<html>
<head>
   ...
</head>
<body>
    ...
</body>
</html>



Aprende HTML


El lenguaje para construir paginas web.

HTML es un lenguaje de programación, en este lenguaje son desarrollados los sitios web.
¡Si! este sitio esta escrito en HTML y otros lenguajes como Javascript.

HTML es uno de los lenguajes de programación con más instrucciones y más fáciles de aprender.
Las etiquetas basicas en este lenguaje son:
<html> </html> Estas etiquetas definen el inicio y el final de el sitio.
<head> </head> Esta parte del sitio contiene especialmente el diseño del sitio y además contiene el titulo de el sitio, lenguaje in que esta escrito (Ingles, Español, etc...) entre otros.
<body> </body> Esta parte de el sitio es el contenido principal, en esta parte estan escritos los articulos, post, tutoriales, etc...

El formato en que se utilizan las etiquetas anteriores es la siguiente:

<html>
<head>
   ...
</head>
<body>
    ...
</body>
</html>