Creating a Web Page
Tools HTML documents are simply text files only software package needed is a text editor an HTML converter takes text in one format and converts it to HTML code
HTML Syntax HTML document has 2 elements: Tag syntax document content one-sided two-sided Tag syntax <Tag Name Properties> Document content </Tag Name> Example: <H1 ALIGN=CENTER>Title of Document</H1>
HTML Codes entered in Editor <HEAD> <TITLE>The Document by Me</TITLE> </HEAD> <BODY> </BODY> </HTML>
See html1
Creating a Paragraph See html2 HTML formats text through the use of tags ignores things such as blank spaces, blank lines, or tabs Use <P> to begin the paragraph Use </P> to close the paragraph See html3
Creating Lists ordered list (OL) See html4 unordered list (UL) definition list (DL) See html5
Other Tags Logical Character Tags Physical Character Tags EM STRONG CODE KBD VAR CITE any combination Physical Character Tags B I TT BIG SMALL SUB SUP
More Tags blinking text (BLINK) – 2-sided link (A) – 2-sided insert an image (IMG) horizontal rule (HR)