Content deleted Content added
←Created page with 'Hello, Wikipedians! It's Nana here. Today we are going to discuss about on how to make a HTML document. # First, launch a text editor. *TIP: You can use Gean...' |
No edit summary |
||
Line 1:
Hello, Wikipedians!
It's Nana here. Today we are going to discuss about on how to make a HTML document.
#
*TIP: You can use [[Geany]](cross-platform), [[Notepad2]](Windows), [[Notepad++]](Windows), [[SciTE]](cross-platform).
*BEWARE: HTML documents should not be created in [[word processors]].
# Type in the first line:
*TIP: The code <code><!DOCTYPE HTML></code> is not case-sensitive. You can type in: <code><!doctype html></code>, <code><!Doctype Html></code>, or <code><!DOCTYPE HTML></code>.
<source lang="html4strict"><!DOCTYPE html></source>
#Type in the second line:
*BEWARE: Don't type in the <source lang="html4strict"><!---Character set and title content to go here---></source> or <source lang="html4strict"><!---Text, image, video (etc) content to go here--></source>
<source lang="html4strict"><head>
<!---Character set and title content to go here--->
</head>
<body>
<!---Text, image, video (etc) content to go here-->
</body></source>
# Within the <head> section, type in:
<source lang="html4strict">
|