| 
                                             Main
                                                HTML Tags Help with HTML
Main HTML tagsHTML is used for designing web
                                                pages. Open your textpad and
                                                you can begin to design a web
                                                page. Always begin with the HTML
                                                tags below. Once you are done
                                                just save your web page as .HTM
                                                or as .HTML and your page is
                                                ready to be viewed in a browser.
 <html></html> Sets
                                              up HTML document. Placed in beginning
                                              and at end of document<
                                              head></head> For information
                                              that isn’t displayed in the
                                              Web page itself. The title is placed
                                              in between the head tags.
 • 
                                            <title></title> Places
                                            the name of the document in the title
                                            bar
 • 
                                            <meta name="title" > Insert
                                            non dynamic information. Used to
                                            give information about site not visable
 <
                                              body></body> Used for
                                              the visible part of the document.
                                              The Attributes below are used in
                                              the body tags to create different
                                              effects. All colors can be set
                                              in Hex Value or name value.
 • 
                                            <body alink=?> active links
 • 
                                            <body bgcolor=?> For background
                                            color
 • 
                                            <body link=?> color of links
 • 
                                            <body text=?> the text color
 • 
                                            <body vlink=?> visited links
 Example: <body bgcolor="#000000" text="#00FF00" link="#990000" vlink="#0000FF" alink="#FFFF00">
 |