A brief introduction to HTML
|
Let's do that [1] getting started
- Use a text editor, like notepad
- Open the file text.txt (you can download it
from here) At the beginning, copy this
exactly:
<html>
<head>
<title> News story </title>
</head>
<body>
- At the end, copy this exactly:
</body>
</html>
-
Yes, html, head,
title and body are just tags
- The html tag marks the whole document as
HTML
-
The head tag marks the header of the
document - information about the document which isn't
actually part of what's presented to the reader
- The body tag marks the body of the
document.