User:MintChocoChip/Creations/HTML/hello.html

This is an old revision of this page, as edited by MintChocoChip (talk | contribs) at 09:42, 4 December 2015. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Hello, Wikipedians!

It's Nana here. Today we are going to discuss about on how to make a HTML document.

  1. Launch a text editor.
  1. Type in the first line:
  • TIP: The code <!DOCTYPE HTML> is not case-sensitive. You can type in: <!doctype html>, <!Doctype Html>, or <!DOCTYPE HTML>.
<!DOCTYPE html>
  1. Type in the second line:
  • BEWARE: Don't type in the
    <!---Character set and title content to go here--->
    
    or
    <!---Text, image, video (etc) content to go here-->
    
<head>
<!---Character set and title content to go here--->
</head>

<body>
<!---Text, image, video (etc) content to go here-->
</body>
  1. Within the <head> section, type in:

<source lang="html4strict">