Welcome our webmaster and SEO forum
Please enjoy the forum, contribute what you can, and wind up the Moderators!
Closed Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 19

Thread: learn html - part 3

  1. #1
    ovi Guest

    Default learn html - part 3

    formatting text on a web page

    This page deals with html tags for formating a webpage with text and will show how to create a headline, how to make paragraphs, how to pick fonts and change their color and size
    the h tag
    Use the H tag to create a headline, the h tag comes in six flavours (yum yum!)

    <H1>this is h1</H1>
    <H2>this is h2</H2>
    <H3>this is h3</H3>
    <H4>this is h4</H4>
    <H5>this is h5</H5>
    <H6>this is h6</H6>

    the H tag is a block level element, which means it will start on a new line, in other words if a H1 tag were inserted into the middle of a line of text a there would be a linebreak at the point where the <H1> starts and another linebreak after the </H1> closing tag
    the following attributes can be added to the H tag
    align=[ left | center | right | justify ]
    example
    <H5 align=left>Hello World</H5>

    the P tag
    A very similar tag to the H tag is the P tag which defines a paragraph
    The <P></P> tags are also a block level element and share the same attributes as the H tags
    align=[ left | center | right | justify ]
    <P align=left>Hello World</P>

    the font tag
    Probably the most versatile text formatting tag is the <font></font> tag
    The font tag not only allows the color and size of text to be selected but also allows specific fonts to be selected

    an example of the font tag
    <font face="arial">this is the arial font face</font>

    change the color
    <font face="arial" color="#FF0000">this is the arial font face</font>

    choose from 1 of 7 sizes
    <font size=7>size 7</font>
    <font size=6>size 6</font>
    <font size=5>size 5</font>
    <font size=4>size 4</font>
    <font size=3>size 3</font>
    <font size=2>size 2</font>
    <font size=1>size 1</font>
    using specific fonts
    Unless a font is specified in a html document all of the text contained in it will be rendered in the users default font, this is also true if the specified font is not installed on the users computer
    The font tag gives enough flexibility to allow html authors to specify a 'back up' font

    <font face="georgia, times new roman, arial">alternative fonts</font>

    in the example above the browser will attempt to render text in the georgia font, if the georgia font is not installed the browser will attempt to render text in the times new roman font and if that is unavailable the browser will search for the arial font

    the following 12 fonts are installed on both pc and mac and are considered as 'safe':
    arial, arial black, comic sans ms, courier, courier new, georgia,
    helvetica, impact, palatino, times new roman, trebuchet ms, verdana

    most browsers prefer font names to be lower case
    the font tag is an inline element, if the browser encounters the font tag in the middle of a line of text it does not cause a linebreak.

    monospaced text
    to create typewriter text (teletype text) use the <TT></TT> tags
    <TT>teletype text is monospaced which means each letter takes up exactly the same amount of space</TT>

    some quick tags
    use the <B></B> tags to make text <B>bold</B>

    use the <EM></EM> tags to <EM>emphasise text</EM>

    use the <U></U> tags to <U>underline text</U>

    use the <I></I> tags to make<I>italic text</I>

    use the <BIG></BIG> tags to <BIG>increase the font size by +1</BIG>
    the maximum font size is 7

    use the <SMALL></SMALL> tags to <SMALL>decrease the font size by -1</SMALL>
    the minimum font size is 1

  2. #2
    Duke Guest

    Default

    Another good way to learn html quickly is to copy and paste the code from an html site and open it in dreamweaver or some other type of WYSIWYG program. You can alter the code and preview it in a browser to see what the changes you made actually do.

    I only mention it becuase it was a fast track to me learning what I know about html (precious little) but I learned it quickly.

  3. #3
    Pentarix Guest

    Default

    I'd have to say that this is how the majority of people do it and will continue to. Taking the time to learn each part would be to time consuming, I recommend learning as you go by copy and pasting.

  4. #4
    lovely Guest

    Default

    Hello Ovi, thank you for your effort it is educative, I have post something like this in the pass, but it is not comprehensive as yours
    Lovely

  5. #5
    ovi Guest

    Default Hello

    I am a big fan of step by step learning. By copy & paste you will take code that maybe you don't understand. It's better to learn step by step. I someone want to learn will learn

    Ovi

  6. #6
    Duke Guest

    Default

    I agree with you ovi but in my case I was made the editor for a gaming community and only needed limited knowledge of html. I quickly surpassed what everyone else on staff new and found that I was once again limited. The best way for me to break beyond those barriers was to find code that performed in a similar way to what I was looking for, copy and paste it in a WYSIWYG and manipulate it to see what did what.

  7. #7
    Paul_KY is offline Senior Member Paul_KY is on a distinguished road
    Join Date
    Aug 2004
    Posts
    1,285

    Default

    I prefer to hire a coder for my big sites, and play around with my WYSIWYG editor for my small affiliate sites.

    Why learn HTML? Learning how to counting money is much more fun.
    "There's no such thing as impossible. It's a myth. Don't believe it."

  8. #8
    Duke Guest

    Default

    Right now I'm not really counting the money so learning php and html seems to be the way to go.

  9. #9
    ovi Guest

    Default :)

    Paul_KY anyway a little knowledge in PHP and HTML will be good. Anyway you can trust in your programmers that they give you the clean code, and a good code?

    Ovi

  10. #10
    Paul_KY is offline Senior Member Paul_KY is on a distinguished road
    Join Date
    Aug 2004
    Posts
    1,285

    Default

    I know. I know. Just messin witcha.
    "There's no such thing as impossible. It's a myth. Don't believe it."

Closed Thread
Page 1 of 2 1 2 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. I want to learn programming , where should I start from ? Read..
    By UK WW ex member in forum General Webmaster Talk
    Replies: 8
    Last Post: 10-22-2007, 02:20 PM
  2. who want to learn programming ?
    By seo8k in forum General Webmaster Talk
    Replies: 0
    Last Post: 09-27-2007, 05:24 PM
  3. Hello I am keen to learn how to launch and attract members
    By Stephanie in forum New Members Introduction
    Replies: 15
    Last Post: 08-02-2007, 12:56 PM
  4. learn html - part 2
    By ovi in forum General Webmaster Talk
    Replies: 0
    Last Post: 06-08-2005, 04:42 PM
  5. learn html - part 1
    By ovi in forum General Webmaster Talk
    Replies: 0
    Last Post: 06-08-2005, 04:29 PM

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124