HyperText Markup Language (HTML) |
HyperText Markup Language (HTML) is a language used to define the format of web pages. An HTML file is a text file containing small markup tags. These markup tags tell the Web browser how to display the page.
A very simple html file looks like this:
<html> <head> <title>Title of page</title> </head> <body> This is my first homepage. <b>This text is bold</b> </body> </html> |