HTML Tutorials

all kinds of tutorials and guides. how, where, why, step-by-step stuff and more. also support for those tutorials and guides. ONLY post step-by-step guides/tutorials here OR reply with question if you have any.
Post Reply
User avatar
KEN
Special
Special
Posts: 751
Joined: Thu Jan 28, 2010 8:11 am

HTML Tutorials

Post by KEN »

First you need to know that in the start this is what you will be typing and have to remember it:

Code: Select all

<html>
<head>
<title> POST YOU TITLE HERE </title>
</head>
<body> YOUR "BODY" TEXTS AND STUFF COMES HERE
</body>
</html>
Remember two things, closing the html ( </html> ) will be done at last, and
whatever you open must be closed by simple placing a '/' before like:
</body> </html> etc.

So now lets make a simple page in html.
Open notepad and type the following:
  • <html>
    <head>
    <title> My first page </title>
    </head>
    <body> Welcome to sethioz.co.uk </body>
    </html>
save it as filename.html and open it and your first webpage is ready.
This is just basic, I'll write tutorial for more advanced stuff in some time.
you can try these tags yourself:
  • <b> .... </b> [Bold text]
    <i> .... </i> [Italic text]
    <u> .... </u> [Underlined text]
    <s> .... </s> [Strike out text]
all of the above tags will come between <body> .. </body>
User avatar
Sethioz
Admin
Admin
Posts: 4762
Joined: Fri Jul 27, 2007 5:11 pm
Custom: Gaming YT > https://youtube.com/SethiozEntertainment
Game Hacking YT > https://youtube.com/sethioz
Game Hacks Store > https://sethioz.com/shopz
Location: unknown
Contact:

Re: HTML Tutorials

Post by Sethioz »

There is no need to make it complicated, information is correct, but instead of remembering all that and doing it manually, its easier to use Dreamweaver. You can simply edit pages in visual mode and DW will do the rest for you.
User avatar
KEN
Special
Special
Posts: 751
Joined: Thu Jan 28, 2010 8:11 am

Re: HTML Tutorials

Post by KEN »

It will teach how to do it manually + I want to keep my notes here xDD
User avatar
Sethioz
Admin
Admin
Posts: 4762
Joined: Fri Jul 27, 2007 5:11 pm
Custom: Gaming YT > https://youtube.com/SethiozEntertainment
Game Hacking YT > https://youtube.com/sethioz
Game Hacks Store > https://sethioz.com/shopz
Location: unknown
Contact:

Re: HTML Tutorials

Post by Sethioz »

dreamweaver IS manually, it is just like using sniper rifle to hunt and not a knife ...
Post Reply