• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Can someone give me a tutorial/teach me about HTML?

3,549
Posts
20
Years
  • Code:
    <br>
    makes a line break
    Code:
    <html>
    <head><title>title goes heree</title></head>
    <body>
    content goes here
    </body>
    </html>

    Code:
    <b>test</b>
    makes bold text
    some basic html
     

    DarknessMonkey

    Avatars are for squares..
    1,419
    Posts
    19
    Years
    • Age 31
    • ...
    • Seen Apr 27, 2009
    Uhhh...

    New Paragraph
    Code:
    <p>Paragraph Here</p>

    Makes A Bullet
    Code:
    <LI>

    Underline Text
    Code:
    <u>Text Here</u>

    Move Text To Left
    Code:
    <Left>Text Here</Left>
    (Some What Doesn't Work For Me Since My Layout Puts Everyrhing In The Middle...)

    Move Text To Right
    Code:
    <Right>Text Here</Right>

    I Know A Few More...
     

    Carlito-san

    Wooo! I'm from South Park!
    2,540
    Posts
    20
    Years
  • Thanks AKFP and muni.Can you tell me the code for links?And pics?And AKFP,I have a site.
     

    DarknessMonkey

    Avatars are for squares..
    1,419
    Posts
    19
    Years
    • Age 31
    • ...
    • Seen Apr 27, 2009
    Well If Ya Need Some Help I Will Help Ya With Your Site!

    Ok There Are 2 Different Link Codes...
    So You Might Wanna Wait...
     

    aRedMoon

    Wait for me outside the lines
    11,127
    Posts
    20
    Years
  • billybob said:
    Thanks AKFP and muni.Can you tell me the code for links?And pics?And AKFP,I have a site.
    Code:
    <a href="https://www.google.com">Google</a>
    Makes

    Code:
    <img src="https://pokevillage.net/images/buttons/2.gif">
    Makes
    Can someone give me a tutorial/teach me about HTML?

    Also, there is no <left> or <right> tags. It's <div align="left"> and stuff.
     

    Carlito-san

    Wooo! I'm from South Park!
    2,540
    Posts
    20
    Years
  • Ok.Thanks JK.Kinda like on PC.Could you tell me the internal links?To like different pages within the site?
     

    Kipkip

    Join the Revolution
    968
    Posts
    20
    Years
    • Age 33
    • Seen Jun 24, 2007
    Ash_Ketchum_From_Pallet said:
    Move Text To Left
    Code:
    <Left>Text Here</Left>
    (Some What Doesn't Work For Me Since My Layout Puts Everyrhing In The Middle...)

    Move Text To Right
    Code:
    <Right>Text Here</Right>

    I Know A Few More...
    There are no such things a <left> or <right> tags. They're <div align="right or left"> </div> I recommend https://lissaexplains.com for a HTML tutorial.
     

    aRedMoon

    Wait for me outside the lines
    11,127
    Posts
    20
    Years
  • billybob said:
    Ok.Thanks JK.Kinda like on PC.Could you tell me the internal links?To like different pages within the site?
    <a href="forums/index.php">
     

    HellishHades

    Pure Evil
    731
    Posts
    20
    Years
  • Kip-kip said:
    There are no such things a <left> or <right> tags. They're <div align="right or left"> </div> I recommend https://lissaexplains.com for a HTML tutorial.

    You'll almost never need a left-aligning tag since that's the default. There are some extenuating circumstances, but beginners probably won't need it.

    HTML Goodies has some nice tutorials. They're pretty comprehensive. The tests that each tutorial gives you are pretty useful.
     
    Back
    Top