AD MANAGEMENT

Collapse

BEHOSTED

Collapse

Basic html tutorial for beginners

Collapse

Collapse

Edit this module to specify a template to display.

X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Basic html tutorial for beginners

    HTML uses tags to communicate to the client (browser) how to display text and images. Tags are contained in < > symbols. In most cases you start with the beginning tag, put in the word or words that will be affected by this tag, and at the end of the string of word(s), you place a closing tag.

    For example, to create a title for a document you would do the following:
    Code:

    My First HTML Document

    The closing tag normally contains a "/" before the directive to indicate the termination of the action.

    HTML tags are not case-sensitive, although URLs generally are. In most cases (with the exception of pre-formatted text) HTML collapses many spaces to one space and does not read blank lines. However, when you write your text you should leave several blank lines between paragraphs to make editing your HTML source document easier.

    The HTML tag

    Although not currently required by all clients, the tag signals the point where text should start being interpreted as HTML code. It's probably a good idea to include it in all your documents now, so you don't have to go back to your files and add it later.

    The tag is usually placed on the first line of your document. At the end of your document you should close with the tag.

    The Head tag

    Just like the header of a memo, the head of an HTML document contains special information, like its title. The head of a document is demarcated by and respectively.

    For the purposes of this class, only the title tag, below, should be included in the document head. A typical head section might look like
    Code:



    My First HTML Document


    Titles

    A title tag allows you to specify a Document Title in your browser window. When people make hotlists, this title is what they see in their list after they add your document. The format is:
    Code:

    My First HTML Document

    Remember, the title usually doesn't appear in the document itself, but in a title box or bar at the top of the window.

    The Body tag

    Like you might expect, the body tags and define the beginning and end of the bulk of your document. All your text, images, and links will be in the body of the document.

    The body should start after the head. A typical page might begin like
    Code:



    My First HTML Document



    Headers

    There are up to six levels of headers that can be used in your document, h1 through h6. Header 1 is the largest header and they get progressively smaller through header 6. Below are each of the six headers and how they usually appear in relation to one another.
    Code:

    This is a header 1 tag


    This is a header 1 tag



    This is a header 2 tag


    This is a header 2 tag



    This is a header 3 tag


    This is a header 3 tag



    This is a header 4 tag


    This is a header 4 tag



    This is a header 5 tag

    This is a header 5 tag



    This is a header 6 tag

    This is a header 6 tag

    Headers, as you notice, not only vary in size, they are also bold and have a blank line inserted before and after them. It's important to use headers only for headings, not just to make text bold (we cover the bold tag later).

    Paragraphs

    In HTML, a paragraph tag

    should be put at the end of every paragraph of "normal" text (normal being defined as not already having a tag associated with it).
    Code:

    causes a line break and adds a trailing blank line


    causes a line break with no trailing blank line

    As a convenience to yourself and others who might have to edit your HTML documents, it's a very good idea to put two or three blank lines between paragraphs to facilitate editing.

    Preformatted text

    The preformatted text tag allows you to include text in your document that normally remains in a fixed-width font and retains the spaces, lines, and tabs of your source document. In other words, it leaves your text as it appears initially or just as you typed it in. Most clients collapse multiple spaces into one space, even tabs are collapsed to one space. The only way to circumvent this is to use the preformatted tag. Visually, preformatted text looks like a courier font.
    Code:

    this is

    an example
    of a preformatted
    text tag


    And this is how it displays:

    this is

    an example
    of a preformatted
    text tag

    Boldface and Italics

    You can add emphasis to text by using the boldface and italic tags or the emphasis and strong tags.

    There is an underline tag as well, but most people don't use it since text that is linked is often underlined. The potential for confusion and the archaic nature of underlining in general make it a poor marker for emphasis.

    When using these tags, you usually cannot (and probably should not) have text that is both boldface and italics; the last tag encountered is usually the tag that is displayed. For example, if you had a boldface tag followed immediately by an italic tag, the tagged word would appear in italics.

    Physical tags

    Code:
    This is a boldface tag.
    This is how boldfacing appears.

    This is an italic tag.
    This is how italics appear.

    Logical tags


    Code:

    This is a strongly emphasized tag.
    This is a strongly emphasized tag.

    This is an emphasized tag.
    This is an emphasized tag.

    There is a subtle distinction between the above "physical" tags which merely change the displayed font, and "logical" styles which are used (or eventually will be) to make types of emphasis client specific (for instance, using the tag would make text red). While either style is fine, be aware that differences in these two kinds of tags may be more apparent with advances in HTML.

    Lists


    There is an easy way in HTML to have numbered, unnumbered, and definition lists. In addition, you can nest lists within lists.

    When using lists, you have no control over the amount of space between the bullet or list number, HTML automatically does this for you. Neither (as yet) do you have control over what type of bullet will be used as each browser is different.

    Unnumbered lists

    Unnumbered lists are started with the
      tag, followed by the actual list items, which are marked with the
    • tag. The list is ended with the ending tag
    .

    For example, here is an unnumbered list with three items:
    Code:


    • list item 1
    • list item 2
    • list item 3


    Here is how that list would display:

    * list item 1
    * list item 2
    * list item 3



    Numbered lists


    Here is the same list using a numbered list format:
    Code:


    1. list item 1
    2. list item 2
    3. list item 3


    Here is how that list would display:

    1. list item 1
    2. list item 2
    3. list item 3

    Definition lists

    Definition lists allow you to indent without necessarily having to use bullets.
    Code:


    This is a term
    This is a definition
    And yet another definition
    Another term
    Another definition


    And here is how this would be displayed

    This is a term
    This is a definition
    And yet another definition
    Another term
    Another definition

    Nested lists

    Finally, here is a nested list within an unnumbered list (we could just have easily had a nested list within a numbered list).
    Code:


    • list item 1

      • nested item 1
      • nested item 2

    • list item 2

      • nested item 1
      • nested item 2

    • list item 3

      • nested item 1
      • nested item 2



    Here is how that list would display:

    * list item 1
    o nested item 1
    o nested item 2
    * list item 2
    o nested item 1
    o nested item 2
    * list item 3
    o nested item 1
    o nested item 2


    Blockquote


    The blockquote tag indents the text (both on the left and right) inside the tags. The blockquote tag looks like this:
    Code:

    ...


    and displays like this:

    Blockquoted text is often used for indenting big blocks of text such as quotations. The text will be indented until the ending tag is encountered. Again, note that the text here is indented on both the left and the right margins.



    Center


    You can center text, images, and headings with the center tag:
    Code:

    This is a centered sentence


    This is a centered sentence.


    The center tag automatically inserts a line break after the closing center tag.

    Horizontal Rule

    To separate sections in a document, you can insert a horizontal rule tag
    . A horizontal rule is displayed as follows:

    Addresses

    The
    tag normally appears at the end of a document and is used most frequently to mark information on contacting the author or institution that has supplied this information. Anything contained within the address tag appears in italics. The address tag is another example of a logical tag, and although it currently does nothing but make text appear in italics, this could change as HTML code advances.

    Here is an example of how an address might appear:
    Code:


    Introduction to HTML My Email


    And it would appear as:

    Introduction to HTML
    My Email

    Hope you like the tutorial!
    Do you want to earn money? Join The Sites Below:
    http://www.neobux.com/?rh=746563686E6F627578
    http://www.buxout.com/?r=tektonik
    http://www.dingobux.com/?r=nick08

  • #2
    Nice Guide

    if you need any more help there are many sites like w3

    Comment


    • #3
      Hey thats a nice word of tutorial but no offense to you , we can find a very simple and effective tutorial website for many languages that is on www.w3schools.com.. Its is really a nice site go check out once...

      Comment


      • #4
        Thanks a lot for the informative post! )
        Value the time Software Application Development Outsourced Programing Services.

        Comment


        • #5
          thank you so much for this tutorial. Hmm.. I wonder I if can make my own blog using wordpress now..I usually use blogger as I am newbie in IM.

          Comment


          • #6
            Go to wc3schools.com if you want to learn HTML.

            Comment


            • #7
              nice thnx soo much dude i am gone make my first html website now...

              Comment


              • #8
                very helpful post.. thanks for sharing...
                Stop Home Foreclosure || Debt Negotiators || Business Process Outsourcing

                Comment


                • #9
                  Great HTML tutorials, Sure the newbies will have been benefits from it
                  Make Money Online | Passive Income Opportunities
                  Free Global Business Network Tools For Small Business
                  How to Get a list of contacts?

                  Comment


                  • #10
                    Nice step by step tutorial i also started in those code when I began doing my first webpage.
                    Jennifer Rivera
                    When you see a good move, look for a better one.

                    Comment


                    • #11
                      Nice tutorial. If you need anymore information, you can refer w3schools.
                      LG Pop Wallpapers LG Cookie Wallpapers Samsung Wave Wallpapers

                      Comment


                      • #12
                        This is really good tutorial for beginners.
                        Thanks for sharing

                        Comment


                        • #13
                          Thanks for sharing
                          This is really good and very help full tutorial for beginners.
                          Go to wc3schools.com and htmlgoodies.com if you want to learn HTML..


                          ______________________________
                          Software Development Company | SEO Forums

                          Comment

                          TEXT

                          Collapse

                          160

                          Collapse

                          Unconfigured Ad Widget

                          Collapse

                          GOOGLE

                          Collapse

                          Announcement

                          Collapse
                          1 of 2 < >

                          FreeHostForum Rules and Guidelines

                          Webmaster forum - Web Hosting Forum,Domain Name Forum, Web Design Forum, Travel Forum,World Forum, VPS Forum, Reseller Hosting Forum, Free Hosting Forum

                          Signature

                          Board-wide Policies:

                          Do not post links (ads) in posts or threads in non advertising forums.

                          Forum Rules
                          Posts are to be made in the relevant forum. Users are asked to read the forum descriptions before posting.

                          Members should post in a way that is respectful of other users. Flaming or abusing users in any way will not be tolerated and will lead to a warning or will be banned.

                          Members are asked to respect the copyright of other users, sites, media, etc.

                          Spam is not tolerated here in most circumstances. Users posting spam will be banned. The words and links will be censored.

                          The moderating, support and other teams reserve the right to edit or remove any post at any time. The determination of what is construed as indecent, vulgar, spam, etc. as noted in these points is up to Team Members and not users.

                          Any text links or images contain popups will be removed or changed.

                          Signatures
                          Signatures may contain up to four lines

                          Text in signatures is subject to the same conditions as posts with respect decency, warez, emoticons, etc.

                          Font sizes above 3 are not allowed

                          Links are permitted in signatures. Such links may be made to non-Freehostforum material, commercial ventures, etc. Links are included within the text and image limits above. Links to offensive sites may be subject to removal.

                          You are allowed ONLY ONE picture(banner) upto 120 pixels in width and 60 pixels in height with a maximum 30kB filesize.

                          In combination with a banner/picture you can have ONLY ONE LINE text link.


                          Advertising
                          Webmaster related advertising is allowed in Webmaster Marketplace section only. Free of charge.

                          Shopping related (tangible goods) advertising is allowed in Buy Sell Trade section only. Free of charge.

                          No advertising allowed except paid stickies in other sections.

                          Please make sure that your post is relevant.


                          More to come soon....
                          2 of 2 < >

                          Advertise at FreeHostForum

                          We offer competitive rates and a many kinds of advertising opportunities for both small and large scale campaigns.More and more webmasters find advertising at FreeHostForum.com is a useful way to promote their sites and services. That is why we now have many long-term advertisers.

                          At here, we also want to thank you all for your support.

                          For more details:
                          http://www.freehostforum.com/threads...eHostForum-com

                          More ad spots:
                          http://www.freehostforum.com/forums/...-FreeHostForum
                          See more
                          See less
                          Working...
                          X