Results 1 to 4 of 4
  1. #1
    Join Date
    Apr 2008
    Posts
    1,153
    Tokens
    199

    Latest Awards:

    Default [HTML]// The Basic

    <Title>Basic Template Construction</Title>
    <!-----Magical // Template Construction-----<!>
    <h1>This is the first header</h1>
    <h2>This is the second header</h2>
    <body>
    This Is Where The Main Text Goes
    Using <center>
    will position the text into the center of the page.
    Using the term Br with the < > Will break the sentence
    into the next line.
    Just like P with the < > will start a new paragraph but
    also interrupt CSS.
    The /body tag below ends the first body tag.
    </body>
    <!-----This Here Is A Comment And Will Not Show Up In The .Html Files-----<!>
    First Tutorial, Hope it helps in a way

  2. #2
    Join Date
    Feb 2007
    Location
    Essex, England
    Posts
    1,392
    Tokens
    0

    Latest Awards:

    Default

    At least you got the description right.. "basic" :rolleyes:

    I know you tried and everything but it's missing quite a bit, it's not structured too well and you haven't even attempted to explain it..


  3. #3
    Join Date
    Sep 2008
    Location
    UK
    Posts
    3,670
    Tokens
    0

    Latest Awards:

    Default

    You'd want to show some css styles too, something like:
    HTML Code:
    .style {
    font-family: arial;
    font-size: 12px;
    font-weight: bold;
    color: red;
    text-decoration: underline;
    }
    For css then for the html either:
    HTML Code:
    <div class="style">blah blah</a>
    or..
    HTML Code:
    <span class="style">blah blah</a>

  4. #4
    Join Date
    Feb 2007
    Location
    Essex, England
    Posts
    1,392
    Tokens
    0

    Latest Awards:

    Default

    In future I'd look around more and try and produce something more to the average standard of 'templates' in this section of the forum.


Posting Permissions

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