• Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Pokémon Snap protagonist in the poll by clicking here.
  • 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?

Uhhh I Can Barely...
Are You Gonna Start Your Own Website?
 
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
 
You can go to webmonkey.com. They have some good tutorials there^^.
 
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...
 
Thanks AKFP and muni.Can you tell me the code for links?And pics?And AKFP,I have a site.
 
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...
 
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

Also, there is no <left> or <right> tags. It's <div align="left"> and stuff.
 
Ok.Thanks JK.Kinda like on PC.Could you tell me the internal links?To like different pages within the site?
 
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.
 
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">
 
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