1 / 9

Creating a Web Page

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

lloyd
Télécharger la présentation

Creating a Web Page

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Creating a Web Page

  2. 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

  3. 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>

  4. HTML Codes entered in Editor <HTML> <HEAD> <TITLE>The Document by Me</TITLE> </HEAD> <BODY> </BODY> </HTML>

  5. See html1

  6. 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

  7. Creating Lists • ordered list (OL) • See html4 • unordered list (UL) • definition list (DL) • See html5

  8. Logical Character Tags EM STRONG CODE KBD VAR CITE any combination Physical Character Tags B I TT BIG SMALL SUB SUP Other Tags

  9. More Tags • blinking text (BLINK) – 2-sided • link (A) – 2-sided • insert an image (IMG) • horizontal rule (HR)

More Related