Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
<!DOCTYPE html> <html lang="es"> <head> <title>Mi primer HTML</title> </head> <body> <h1>Hola Mundo!</h1> </body> </html>
Las páginas HTML son documentos de texto.
HTML usa etiquetas para dar la información.
By Ignacio Rojas