HTML

1. Hypertext Markup Language (HTML) is the language of the web. To write a simple html file, simply type the following in a text editor, save the file as myhtml.html or myhtml.htm, then view it with a web browser.

<html>
<body>
  Hello!
</body>
</html>

2. Center to html is the hyperlinks --- tags that allow broswers to navigate the web. The following code adds a hyperlink to the Google search engine.

<html>
<body<
  Hello! Click <a href=http://www.google.com/>here</a> to search Google.
</body>
</html>

3. Word processors such as Microsoft Word allow users to save files as HTML documents. HTML editors such as Microsoft FrontPage and Macromedia Dreamweaver are also useful tools for writing HTML documents.