Using HTML to create websites
All web pages on the internet are created using a language called Hypertext Markup Language (HTML). HTML describes:
HTML can be written in specialist software, or in a simple text editor like Notepad. As long as the document is saved with the file extension ‘.html’ it can be opened and viewed as a webpage from a browser. This example of HTML code displays a message on a webpage:
<html> <body> <h1>Hello world</h1> <p>This is my first webpage</p> </body> </html>The code uses tags to describe the appearance of the information:
Over the years there have been several versions of HTML. Each successive version has more tags, allowing the programmer to build more advanced webpages. The latest version, released in 2012, is HTML5.
Basic HTML: Introduction
HTML (Hypertext Markup Language)
0 Comments
Please do not enter any spam link in the comment box.