The VG Resource
Nate teaches how to use HTML - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: Creativity (https://www.vg-resource.com/forum-126.html)
+--- Forum: Other Creativity (https://www.vg-resource.com/forum-130.html)
+--- Thread: Nate teaches how to use HTML (/thread-26188.html)



Nate teaches how to use HTML - eureka - 11-13-2014

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.


RE: Nate teaches how to use HTML - Neweegee - 11-13-2014

Where do I test this out? I don't want to accidentally blow-up a website with my noob skills.


RE: Nate teaches how to use HTML - eureka - 11-13-2014

Just use notepad(Or notepad++), and save it as a File.html
THEN you can edit.


RE: Nate teaches how to use HTML - E-Man - 11-13-2014

Just do what I do when I used to build web sites for practice. Just type in the code with notepad, change the extension to HTML, and then open it that way.

EDIT: Oops! Ninja'd by Nate. XD