Generation MS SUCKS DICK
Server not going up. Play smokystory.tk a fun server known as generation ms
Generation MS SUCKS DICK
Server not going up. Play smokystory.tk a fun server known as generation ms
Generation MS SUCKS DICK
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Generation MS SUCKS DICK


 
HomePortalLatest imagesRegisterLog in

 

 BASIC HTML CODING!

Go down 
4 posters
AuthorMessage
thebloodz
Super GM
Super GM
thebloodz


Posts : 168
Join date : 2009-05-14
Age : 27
Location : Australia =D Im back Home!

BASIC HTML CODING! Empty
PostSubject: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSat May 16, 2009 5:58 pm

Well, i helped u b4 so here u go! all ppl who need help here u go ^__^!!! Twisted Evil
YOU MAY THANK ME MUAHAHAHAHAHHA - My picture - affraid affraid

Tutorial - by Bloodz
Ok, we all know that HTML is complicated. need help? well, heres the main basics =D.
Html may be done even on notepad, and just pasted onto a website

(from - http://www.w3.org/MarkUp/Guide/ taking no credit-)

Start with a title
Every HTML document needs a title. Here is what you need to type:

My first HTML documentChange the text from "My first HTML document" to suit your own needs. The title text is preceded by the start tag and ends with the matching end tag . The title should be placed at the beginning of your document.

To try this out, type the above into a text editor and save the file as "test.html", then view the file in a web browser. If the file extension is ".html" or ".htm" then the browser will recognize it as HTML. Most browsers show the title in the window caption bar. With just a title, the browser will show a blank page. Don't worry. The next section will show how to add displayable content.

Add headings and paragraphs
If you have used Microsoft Word, you will be familiar with the built in styles for headings of differing importance. In HTML there are six levels of headings. H1 is the most important, H2 is slightly less important, and so on down to H6, the least important.

Here is how to add an important heading:

An important heading

and here is a slightly less important heading:

A slightly less important heading

Each paragraph you write should start with a

tag. The

is optional, unlike the end tags for elements like headings. For example:

This is the first paragraph.



This is the second paragraph.

Adding a bit of emphasis
You can emphasize one or more words with the tag, for instance:

This is a really interesting topic!Adding interest to your pages with images
Images can be used to make your Web pages distinctive and greatly help to get your message across. The simple way to add an image is using the tag. Let's assume you have an image file called "peter.jpg" in the same folder/directory as your HTML file. It is 200 pixels wide by 150 pixels high.

The src attribute names the image file. The width and height aren't strictly necessary but help to speed the display of your Web page. Something is still missing! People who can't see the image need a description they can read in its absence. You can add a short description as follows:

alt="My friend Peter">The alt attribute is used to give the short description, in this case "My friend Peter". For complex images, you may need to also give a longer description. Assuming this has been written in the file "peter.html", you can add one as follows using the longdesc attribute:

alt="My friend Peter" longdesc="peter.html">You can create images in a number of ways, for instance with a digital camera, by scanning an image in, or creating one with a painting or drawing program. Most browsers understand GIF and JPEG image formats, newer browsers also understand the PNG image format. To avoid long delays while the image is downloaded over the network, you should avoid using large image files.

Generally speaking, JPEG is best for photographs and other smoothly varying images, while GIF and PNG are good for graphics art involving flat areas of color, lines and text. All three formats support options for progressive rendering where a crude version of the image is sent first and progressively refined.

Adding links to other pages
What makes the Web so effective is the ability to define links from one page to another, and to follow links at the click of a button. A single click can take you right across the world!

Links are defined with the tag. Lets define a link to the page defined in the file "peter.html" in the same folder/directory as the HTML file you are editing:

This a link to
Peter's page.The text between the and the is used as the caption for the link. It is common for the caption to be in blue underlined text.

If the file you are linking to is in a parent folder/directory, you need to put "../" in front of it, for instance:

Mary's pageIf the file you are linking to is in a subdirectory, you need to put the name of the subdirectory followed by a "/" in front of it, for instance:

Sue's pageThe use of relative paths allows you to link to a file by walking up and down the tree of directories as needed, for instance:

John's pageWhich first looks in the parent directory for another directory called "college", and then at a subdirectory of that named "friends" for a file called "john.html".

To link to a page on another Web site you need to give the full Web address (commonly called a URL), for instance to link to www.w3.org you need to write:

This is a link to W3C.You can turn an image into a hypertext link, for example, the following allows you to click on the company logo to get to the home page:

home pageThis uses "/" to refer to the root of the directory tree, i.e. the home page.

Three kinds of lists
HTML supports three kinds of lists. The first kind is a bulletted list, often called an unordered list. It uses the
    and
  • tags, for instance:


    • the first list item


    • the second list item


    • the third list item

    Note that you always need to end the list with the
end tag, but that the is optional and can be left off. The second kind of list is a numbered list, often called an ordered list. It uses the
    and
  1. tags. For instance:


    1. the first list item


    2. the second list item


    3. the third list item

    Like bulletted lists, you always need to end the list with the
end tag, but the end tag is optional and can be left off.

The third and final kind of list is the definition list. This allows you to list terms and their definitions. This kind of list starts with a
tag and ends with
Each term starts with a
tag and each definition starts with a
. For instance:


the first term

its definition


the second term

its definition


the third term

its definition

The end tags and
are optional and can be left off. Note that lists can be nested, one within another. For instance:


  1. the first list item



  2. the second list item

    • first nested item

    • second nested item




  3. the third list item

You can also make use of paragraphs and headings etc. for longer list items.

HTML has a head and a body
If you use your web browser's view source feature (see the View or File menus) you can see the structure of HTML pages. The document generally starts with a declaration of which version of HTML has been used, and is then followed by an tag followed by and at the very end by . The ... acts like a container for the document. The ... contains the title, and information on style sheets and scripts, while the ... contains the markup with the visible content. Here is a template you can copy and paste into your text editor for creating your own pages:

"http://www.w3.org/TR/html4/loose.dtd">


replace with your document's title



replace with your document's content



Tidying up your markup
A convenient way to automatically fix markup errors is to use HTML Tidy which also tidies the markup making it easier to read and easier to edit. I recommend you regularly run Tidy over any markup you are editing. Tidy is very effective at cleaning up markup created by authoring tools with sloppy habits. Tidy is available for a wide range of operating systems from the TidyLib Sourceforge site, and has also been integrated into a variety of HTML editing tools.

Getting Further Information
If you are ready to learn more, I have prepared some accompanying material on advanced HTML and adding a touch of style.


Best of luck and get writing!


Last edited by thebloodz on Sat May 16, 2009 6:02 pm; edited 1 time in total
Back to top Go down
http://www.ivfs.tk
iSONx
Super GM
Super GM
iSONx


Posts : 220
Join date : 2009-05-15
Age : 27
Location : HoboLand [:

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSat May 16, 2009 6:00 pm

Imao Nice thread.
Back to top Go down
thebloodz
Super GM
Super GM
thebloodz


Posts : 168
Join date : 2009-05-14
Age : 27
Location : Australia =D Im back Home!

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSat May 16, 2009 6:03 pm

thanks mate
Back to top Go down
http://www.ivfs.tk
Hagos
Super GM
Super GM
Hagos


Posts : 368
Join date : 2009-05-13
Location : Sydney, Australia

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSat May 16, 2009 6:32 pm

very nice mate....good work cheers
Back to top Go down
Calypso
Super GM
Super GM
Calypso


Posts : 126
Join date : 2009-05-16
Age : 36
Location : NC

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSun May 17, 2009 3:50 am

Glad I know this already rofl, toke web design one and two in high school ftw Very Happy
Back to top Go down
iSONx
Super GM
Super GM
iSONx


Posts : 220
Join date : 2009-05-15
Age : 27
Location : HoboLand [:

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSun May 17, 2009 4:54 am

Hmm i can't
Your Pic that you post on.
Or maybe i Lagging.
Back to top Go down
Calypso
Super GM
Super GM
Calypso


Posts : 126
Join date : 2009-05-16
Age : 36
Location : NC

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSun May 17, 2009 5:33 am

the pics don't show so just go to the link he posted since that's were he got the guide from lol
Back to top Go down
iSONx
Super GM
Super GM
iSONx


Posts : 220
Join date : 2009-05-15
Age : 27
Location : HoboLand [:

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSun May 17, 2009 5:34 am

Oh Ohkay.
Thanks.
Back to top Go down
Calypso
Super GM
Super GM
Calypso


Posts : 126
Join date : 2009-05-16
Age : 36
Location : NC

BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitimeSun May 17, 2009 5:36 am

No problem Very Happy
Back to top Go down
Sponsored content





BASIC HTML CODING! Empty
PostSubject: Re: BASIC HTML CODING!   BASIC HTML CODING! I_icon_minitime

Back to top Go down
 
BASIC HTML CODING!
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Generation MS SUCKS DICK :: Removed.-
Jump to: