Combination Xx 317-603
Welcome to Conbination Xx ,please make a free account today to have access to making your own topics,if you are new to Unforgivscape,and do not have a client download can be found at the "announcements/updates" section of the Forums thanks for your time and don't forget to vote for us and you can download the new 317 client at http://www.mediafire.com/?3vdw42jcy511d1l
..::The forum Team::..
Combination Xx 317-603
Welcome to Conbination Xx ,please make a free account today to have access to making your own topics,if you are new to Unforgivscape,and do not have a client download can be found at the "announcements/updates" section of the Forums thanks for your time and don't forget to vote for us and you can download the new 317 client at http://www.mediafire.com/?3vdw42jcy511d1l
..::The forum Team::..
Combination Xx 317-603
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Image
 
PlayHomeUnforgivscapeLatest imagesSearchRegisterLog in
Top posters
Awesome4me (842)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
Sinji (502)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
Abel (270)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
Eh Im God (260)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
Blue Phat (228)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
Mikenike (227)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
Travis (223)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
©I Am G0d I (202)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
AskingAle (186)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
๖̶ۣۜMєlaηiє™♥ (136)
Noob Friendly - HTML Basics I_vote_lcapNoob Friendly - HTML Basics I_voting_barNoob Friendly - HTML Basics I_vote_rcap 
Latest topics
» NOSTALGIA 2017
Noob Friendly - HTML Basics Icon_minitimeSun Jul 22, 2018 11:00 pm by dronza

» Looking for Developers \ Beta Testers \ Coders
Noob Friendly - HTML Basics Icon_minitimeMon Sep 04, 2017 9:33 pm by Liam

» I'm back, bitches.
Noob Friendly - HTML Basics Icon_minitimeThu Dec 26, 2013 1:33 pm by Liam

» Hey been awhile
Noob Friendly - HTML Basics Icon_minitimeThu Dec 26, 2013 12:35 pm by Liam

» Sweet Nostalgia
Noob Friendly - HTML Basics Icon_minitimeSat Dec 07, 2013 4:23 am by Abel

» Hello ! [2013]
Noob Friendly - HTML Basics Icon_minitimeSun Apr 28, 2013 5:31 am by Abel

» The hell happened?
Noob Friendly - HTML Basics Icon_minitimeTue Jan 22, 2013 7:02 pm by MADBRO

» isaac abusing powers
Noob Friendly - HTML Basics Icon_minitimeMon Dec 24, 2012 5:52 pm by Travis

» Hello :-)
Noob Friendly - HTML Basics Icon_minitimeFri Dec 21, 2012 9:53 pm by dronza


 

 Noob Friendly - HTML Basics

Go down 
3 posters
AuthorMessage
Nosere
Nub Poster
Nub Poster



Posts : 12
Unforgivscape Reputation : 2
Join date : 2012-03-05

Noob Friendly - HTML Basics Empty
PostSubject: Noob Friendly - HTML Basics   Noob Friendly - HTML Basics Icon_minitimeTue Mar 06, 2012 1:36 am

This is a noob friendly tutorial on HTML basics, since i was bored.

What is HTML?
HTML is a website coding language, which is used in most of the websites. If you are on google chrome, you can right this page click and click on view source. Then you will see a big HTML source code.

What HTML is used for
HTML is used for the template of the page, together with css you can make a site look really good.

What is a HTML Tag?
A HTML tag is basicly a function so the code next to it knows what to do. bit hard to explain lol
Example opening tag: <html>

What is a closing HTML Tag?
A closing HTML tag, is very important in html. If you don't close your html tag it can course big problems on a page.
Example closing tag: </html>

What is CSS
It means stylesheet, basicly it helps the html page with a template.
Now for the basic codes.

<html></html>
<html></html> Does not do much, it declares the version of HTML, the standard version is html5. Also more advanced stuff, which i am not going to get into today.

<head></head>
Very important, for advanced HTML. You can include css files and js files here. These are needed for the template of page, we might get back to that in another topic. Scripts also go in here. You can also put your page title in here you do this by using the <title></title> tag.
Example <title></title> tag: <title>The page title!</title>

<a></a>
<a></a> is usually used for linking (href) images or text.
Example <a></a>:
Code:
<a href = "link here">text here</a> If you dont close this all text will have the link on the page, so important to close.
<body></body>
In simple HTML coding, you don't need this. But for styling your website out, you will need this.

<br></br>
This will create a new line
<font></font>

<font></font> Is very important in HTML, how ever if you are using CSS you do not have to us this. Since you can can give font colors or size in there too. (much easier). However, <font></font> is usually used for font colors or size.

Example <font></font>:
Code:
<font color="green" size="15"><a href = "link here :P">LINK<a/></font> How ever, in this code <a href = ""></a> does not work. You will need CSS to change link colors. :)


Okay, this is the end of the tutorial. Hope you learned something today.


PS: <a href = ""></a> should be used without the spaces next to =. I couldnt use it normally, since the forum detects it as a link


So here is a basic html page
Code:
<html>
<head><title>My first web page!</title></head>
<body>
<a href = "thisisalink">My first web page!</a><br>
<font size="10" color="purple">Hello world!</font>
</body>
</html>

And the result Very Happy
Noob Friendly - HTML Basics 34srwbs


Last edited by Nosere on Tue Mar 06, 2012 3:57 pm; edited 1 time in total
Back to top Go down
Sinji
Forum Moderator
Forum Moderator
Sinji


Posts : 502
Unforgivscape Reputation : 10
Join date : 2010-01-30
Age : 29
Location : Mikeys bed ;)

Noob Friendly - HTML Basics Empty
PostSubject: Re: Noob Friendly - HTML Basics   Noob Friendly - HTML Basics Icon_minitimeTue Mar 06, 2012 3:58 am

Wonderful tutorial for those who don't know jack shit about coding HTML Razz

Nice to see some quality work coming from you.
Back to top Go down
Nosere
Nub Poster
Nub Poster



Posts : 12
Unforgivscape Reputation : 2
Join date : 2012-03-05

Noob Friendly - HTML Basics Empty
PostSubject: Re: Noob Friendly - HTML Basics   Noob Friendly - HTML Basics Icon_minitimeTue Mar 06, 2012 4:18 am

Sinji wrote:
Wonderful tutorial for those who don't know jack shit about coding HTML Razz

Nice to see some quality work coming from you.

Thanks
Back to top Go down
Josty
Server Administrator
 Server Administrator
Josty


Posts : 65
Unforgivscape Reputation : 0
Join date : 2011-02-07
Age : 29
Location : The Netherlands

Noob Friendly - HTML Basics Empty
PostSubject: Re: Noob Friendly - HTML Basics   Noob Friendly - HTML Basics Icon_minitimeTue Mar 06, 2012 12:00 pm

nice tutorial usefull since i wanted to learn html Smile

Thank you for this
Back to top Go down
Sponsored content





Noob Friendly - HTML Basics Empty
PostSubject: Re: Noob Friendly - HTML Basics   Noob Friendly - HTML Basics Icon_minitime

Back to top Go down
 
Noob Friendly - HTML Basics
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Combination Xx 317-603 ::  Coders zone-
Jump to: