explaining how to make html scripts (easy+++, good instructions)

Discussion in 'Web Programming' started by nolanowns, Feb 8, 2007.

explaining how to make html scripts (easy+++, good instructions)
  1. Unread #1 - Feb 8, 2007 at 6:27 PM
  2. nolanowns
    Referrals:
    0

    nolanowns Guest

    explaining how to make html scripts (easy+++, good instructions)

    Since im only 11 most of the tutorials on theese fourms didnt really make since to me. so... i decided to make a easy tutorials so any idiot can understand it!



    ok lets start things off the easy way. this is how you would setup a html script before you start scripting (tell me if it dosent make since)

    Code:
    <html>
    <head>
    </head>
    
    <body>
    </body>
    </html>
    
    That would just be a plain blank website.
    heres how you would make a red website with a greeting in BIG text.

    Code:
    <html>
    <title>
    </title>
    <body>
    <body style="background-color:#ff0000">
    <h1> Hurrah my first good website! </h1>
    </body>
    </html>
    
    
    <h1> </h1> makes a header/title what ever you wanna call it.
    / usually means end. make sure to add those or else your special command wont work....
    <p> </p> tells html to make a new paragraph.
    <br> </br> is basicly the same thing dont worry about it.
    <h2> </h2> is a sub header

    ok enough of that.
    lets go on to making a website with red text, size 7 text, black background, and a title!

    Code:
    <html>
    <head>
    <title> Hello welcome to my site </title>
    </head>
    <body>
    <body style="background-color:#000000">
    <font color="#ff0000" size = "7"> What???!!!!!!????????? OK!!!! </font>
    </body>
    </html>
    
    Last but not least, im going to teach you how to import pictures!

    Code:
    <html>
    <head>
    <title>  blah </title>
    </head>
    <body>
    < img src = "Nameofpicture.gif"
    make sure to save it as a gif and in your html folder. Of course to save it in your html folder you have to make one! so do so...
    </body>
    </html>
    
    Those are all the basic but you need to rember to save your file as a .html
    EXAMPLE: nameofyourfile.html
    then open it not as "text documents" , but as "all files"
    Thats about all you neeed to know.

    please report any mispelled work, or missing puncuation.
     
  3. Unread #2 - Feb 10, 2007 at 1:52 PM
  4. cp
    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0

    cp an cat
    Banned

    explaining how to make html scripts (easy+++, good instructions)

    html is not scripting. Just wanted to put that out there.

    <br></br>? Do you know what you're talking about? / IS NOT to end. Your 'special command' will still work, just not in all browsers, and probably not to the desired extent. '/' is used to make your html xhtml compliant, so instead of <br></br>, you could do <br />.
    <br></br> is also not used for telling html to make a new paragraph, it's used to make a line break, like when you press enter in a text box.

    You just said 'heres how you would make a red website with a greeting in BIG text.'

    This is an html tutorial, according to you, not a css one, and you didn't even explain the css. Since this is an html tutorial, you should do this instead:
    Code:
    <body bgcolor=#ff0000>
    
    And your html img tag is incomplete:
    Code:
    < img src = "Nameofpicture.gif"
    
    It should be:
    Code:
    <img src="Nameofpicture.gif" />
    
    (To make it xhtml compliant, I added the extra slash)

    And you're barely explaining anything. You should actually explain some of the things that you barely talk about. Like, <img src="blah.png" border="1"> and extra options, etc. Your tutorial does not only not explain anything, but it makes the 'idiots' that are trying to learn html only more confused.

    EDIT:
    I'm not flaming you, but before making a tutorial, maybe you should actually learn html.
     
  5. Unread #3 - Feb 11, 2007 at 6:50 AM
  6. nolanowns
    Referrals:
    0

    nolanowns Guest

    explaining how to make html scripts (easy+++, good instructions)

    Im not in the mood to argue becouse if i did id make a fool of my self but , i know alot more about html then the simple basics and plus ive been programming SCAR lately so i forget alot of it.

    btw, did you get your tutorial from www.pagetutor.com ?

    ps. Atleast someone replied.
     
  7. Unread #4 - Feb 11, 2007 at 6:56 AM
  8. nolanowns
    Referrals:
    0

    nolanowns Guest

    explaining how to make html scripts (easy+++, good instructions)

    Well atleast some one replied. I know this is a crudy excuse but ive been working on a big SCAR project , and i forget a bunch of html (feel free to flame about that)
    ps. Did you get your tutoirals from www.pagetutor.com ?
     
  9. Unread #5 - Feb 11, 2007 at 7:22 AM
  10. sulliwan
    Joined:
    Feb 2, 2007
    Posts:
    66
    Referrals:
    0
    Sythe Gold:
    0

    sulliwan Member

    explaining how to make html scripts (easy+++, good instructions)

    No offence dude, but internet is full of "tutorials" like this. Try typing "html" into google's search field and hit the google search button. You will get about 4,630,000,000 results.

    Again, no offence dude, but we don't need to invent a bicycle again.


    BTW! This tutorial looks very similiar to pagetutor.com's one.
     
< Dynamic PHP Content Tutorial | lol fucking around with javascript... >

Users viewing this thread
1 guest


 
 
Adblock breaks this site