• 90 likes • 196 Views
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: document content tags one-sided two-sided Tag syntax
E N D
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: • document content • tags • 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 <HTML> <HEAD> <TITLE>The Document by Me</TITLE> </HEAD> <BODY> </BODY> </HTML>
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
Logical Character Tags EM STRONG CODE KBD VAR CITE any combination Physical Character Tags B I TT BIG SMALL SUB SUP Other Tags
More Tags • blinking text (BLINK) – 2-sided • link (A) – 2-sided • insert an image (IMG) • horizontal rule (HR)