HTML tags

Back when I started making web pages, about ten years ago, the only way to do it was to use a HTML editor and had to deal with things like what is shown below..........

All pages contain the tags in the following example.

<html>
<head>
<title>
HTML Tags</title>
(The TITLE is what appears at the top left of your browser.)
(There are other tags that reside here, but for now this should be enough to get you started.)"JavaScript and Style Sheet information normally goes in this area. Between the
<HEAD> and </HEAD> tags."
</head>
<body>

"Everything else will be between the <BODY> and </BODY> tags."
</body>
</html>


But times have changed and now I'm using better software.

Take a look here.