Users browsing this thread: 1 Guest(s)
Nate teaches how to use HTML
#1
Well Hello there im nate pleased to meet you Smile.

I'll teach y'all some HTML so let's Go!
First things first, the "Body"

To make the body, use this code:
Code:
<!DOCTYPE html>
<body>
<html>

This code can be in any order as long as it's THERE.

At the bottom of the webpage's code, put this:
Code:
</body>
</html>
This finishes the website's code, so at the end of everything PUT THAT THERE.

Nextly, sinse HTML is a Visual Language, Images go to HTML as beer batter goes to Onion rings.

Paragraph 2: Using a image as a link:

To use a image as a link, type this code:
Code:
<a href="NAME OF IMAGE.PNG">
<img src="NAME OF IMAGE.PNG" alt="WHERE THE IMAGE IS LOCATED, AND NAME OF IMAGE.PNG"
If you got this, we are off to a good start!

Nextly, to make the image the correct size, use this code:
Code:
style="44px;height:44px">
And then finish with:
Code:
</a>
So put that together, and...
Code:
<a href="NAME OF IMAGE.PNG">
<img src="NAME OF IMAGE.PNG" alt="WHERE THE IMAGE IS LOCATED, AND NAME OF IMAGE.PNG"
style="44px;height:44px">
</a>
And there ya go!

Paragraph 3: Background color and font.

To make a background color, use this code:
Code:
<body style="background-color:Violet">
This will make the background Violet.*

*(To change color, just type a different color)

To change a font, use this code:
Code:
<h1 style="font-family:Cambria Math">EXAMPLE</h1>
This will make the text Cambria Math.
To change font, put A different font there*

*(As long as a font exists)

And there is how to make a basic webpage!

By NateIsMyName.

Did i miss something? tell me!

I'm a beginner at this, but this is other creativity so this is what i've KINDA been doing lately.
[Image: jcKgJbX.png]
Reply
Thanked by:


Messages In This Thread
Nate teaches how to use HTML - by eureka - 11-13-2014, 08:35 PM
RE: Nate teaches how to use HTML - by Neweegee - 11-13-2014, 09:18 PM
RE: Nate teaches how to use HTML - by eureka - 11-13-2014, 09:22 PM
RE: Nate teaches how to use HTML - by E-Man - 11-13-2014, 09:22 PM

Forum Jump: