Hi all, I am here to help you become coders just the way I did .
I have to admit the first part is boring a little but gets more and more exciting.
This is only basic so if your past that then please head over to tut2 by me .
Programs/Equipment
Ok so lets start!! How I work is by telling you snippets and explaining what they do.
Also please don't copy and paste it as you will not learn!
Instructions
Thread Copyright Of ViperX 2010 - 2011 All rights reserved.
By stealing this thread and claiming it as your own is pathetic and is also illegal.
You have been warned!
Thanks For Reading Goodbye
I have to admit the first part is boring a little but gets more and more exciting.
This is only basic so if your past that then please head over to tut2 by me .
Programs/Equipment
- Notepad
- Or another simple text editor
- A clean desktop(This is were the file will be)
- A brain!
Ok so lets start!! How I work is by telling you snippets and explaining what they do.
Also please don't copy and paste it as you will not learn!
Instructions
- Open Notepad!
- Save it. Call it (index.html). change the drop down box to all files.
- Now type this code
HTML:
<html> <head> <title>What you want site to be called </title> </head> </html>
- <html> - This starts off the document! Do not get into a bad habit by not using it!
- <head> - This is the top part of the document always needed (This is where you would put javascript's and other scripts).
- <title> This is the name of the document in a way. You only see it on your browser but it isnt the URL.
- </html> - This ends the HTML tag and ends the website.
- </head> - This ends the head/top of the html document.
- </title> - This ends the title, If you didn't have this then the whole site would be the title and would confuse everything.
TOP TIP2: Always Copyright your work you can do this by
HTML:Copyright © Of Yourname/business date - date All rights reserved.
- <html> - This starts off the document! Do not get into a bad habit by not using it!
- Now save just do ctrl + s
- We will now add text!
HTML:<html> <head> <h1> Sitename </h1> <title>What you want site to be called </title> </head> <body> <p>Site info</p> <p>More site info</p> <p>Other stuff</p> </body> </html>
- <h1> - This means header 1 Or in English. Means that it is the first title.
- <body> - This is the heart of the code. Where all of the good stuff goes.
- <p> - This means paragraph.
- </h1> This ends the header you don't want the whole site to be the header do you?
- </body> - This ends the body tag. Nothing happens if you do not use it just looks unprofessional and proves you do not put effort into your work!
- </p> - Ends the paragraph
- And thats the end of Tutorial one please comment on what you think of the tutorial and feel free to ask any questions
Thread Copyright Of ViperX 2010 - 2011 All rights reserved.
By stealing this thread and claiming it as your own is pathetic and is also illegal.
You have been warned!
Thanks For Reading Goodbye