Parts of a Document


True HTML documents will start with "<HTML>" and end with "</HTML>". Next is probably the "head", followed by the title, then the body. The title indicates what will be seen on the top bar. Right now, if you look at the top of the screen, you may see "Talk Digi -" etc.. You may change this to your liking. The body is where the important stuff goes on, like adding text. Here is the most basic code you can use for starting a web page.
HTML Code:
<html>
<head>
<title> </title>
</head>
<body> -=-=-=-=-=-=-=-=-=-=-=-
TYPE YOUR MAIN CONTENT HERE
-=-=-=-=--=-=-=-=-=-=-=-=-=-=-
</body>
</html>
Feel free to reread the paragraph if needed!