Help

Latioscatcher

King of Chaos
  • 504
    Posts
    21
    Years
    ANYONE NO how to edit html and make kinda of pages its kinda hard for me
     
    You can write html into notepad, and just save it as .txt if you're using php, or you can save it as .html if you want a normal page ^^
     
    Latios619 said:
    youll never catch me latioscatcher hahaha
    Don't SPAM.


    And if you can't figure how to make it in Notepad, then go back to Freewebs.
     
    Geeez... seriously, if Freewebs are HTML based, then head off to Geocities. -_-;;

    htmlgoodies.com
     
    If you look in the Tech Institute on PC, there are a couple of tutorials for this kind of thing too. Check 'em out, they were written by Pok?mon webmasters just like you.
     
    here a basic tutorial i found on a website

    making a website
    by liQuid Plasma
    www.liquid-plasma.tk
    start off by putting this into Notepad (C:\WINDOWS\notepad.exe)

    Code:
    <html>
    <head>
    <title>webpage title here
    </head>
    <body>
    your page content goes here!
    </body>
    </html>

    and save as index.html

    now... some basic code (add as needed)

    line break
    Code:
    <br> OR

    horizontal rule
    Code:
    <hr>

    image
    Code:
    <img src="url_to_image" alt="optional text"/>

    image link
    Code:
    <a href="url_to_whatever">[img]url_to_image[/img]

    image link (opens in new window)
    Code:
    <a href="url_to_whatever" target="_blank">[img]url_to_image[/img]

    link (opens in new window)
    Code:
    <a href="link_goes_here" target="_blank">link text

    paragraph
    Code:
    <p>text
     
    Back
    Top