Results 1 to 3 of 3
  1. #1
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572

    Basic HTML Tut #2

    In this tutorial we will be learning to use code to make websites not words.

    Go to Notepad

    Write this down
    <html>
    <body>
    <h1>GodLike Gaming</h1>
    <p>Clan Godlike</p>
    </body>
    </html>

    Go to 'Save as' and save it as 'HTML Part two'.HTML. Save it to your Desktop...

    Go to your Desktop and open it...

    What you will see
    A Title saying Godlike Gaming
    Writing Saying clan godlike

    What we learnt...

    <HTML> Used to identify the coding used
    <body> Contains all the writing and fonts and titles.
    <h1> Means Heading 1 you can keep going down but I would stop at 6 otherwise you can;t Read ^^
    <p> Means Paragraph
    </HTML> End of the HTML code
    </body> End of body code
    </h1> End of h1 code
    </p> End of p code

    I mean end of as in not using that code anymore for example you need to stop somewhere

    These tuts are mine from another site
    I'm back.

  2. #2
    yearupie's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    54
    Reputation
    11
    Thanks
    2
    This is not a valid html file!
    A head and title is required in a html document

    [php]
    <html>
    <head>
    <title>Dit is mijn eerste homepage</title>
    </head>
    <body>
    <h1>GodLike Gaming</h1>
    <p>Clan Godlike</p>
    </body>
    </html>
    [/php]

    Very bad tutorial :|

  3. #3
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    I've just learnt head and forgot about the title thank your for the corection
    I'm back.

Similar Threads

  1. Basic HTML Tut #4
    By Spookerzz in forum Web Languages
    Replies: 6
    Last Post: 03-12-2010, 10:44 PM
  2. Basic HTML Tut #6
    By Spookerzz in forum Web Languages
    Replies: 2
    Last Post: 03-12-2010, 04:01 AM
  3. Basic HTML Tut #3
    By Spookerzz in forum Web Languages
    Replies: 9
    Last Post: 03-12-2010, 04:00 AM
  4. Basic HTML Tut #1
    By Spookerzz in forum Web Languages
    Replies: 7
    Last Post: 02-27-2010, 04:21 PM
  5. Basic HTML Tut #5
    By Spookerzz in forum Web Languages
    Replies: 0
    Last Post: 01-30-2010, 06:52 AM