PDA

View Full Version : Wanting to Learn to code



united-champ
21-10-2008, 05:06 PM
Hey, i am 14 almost 15 and i am really interested in learning to code, i just want a basic code and a link to a guide. i have tried VBasic but that was annoying. i think i might start with HTML i heard that easy.

Can you gimee sum tips?
And what code do they used for err.. Layouts? such as a marapet's Group Layout?

HabbDance
21-10-2008, 07:53 PM
Hey, i am 14 almost 15 and i am really interested in learning to code, i just want a basic code and a link to a guide. i have tried VBasic but that was annoying. i think i might start with HTML i heard that easy.

Can you gimee sum tips?
And what code do they used for err.. Layouts? such as a marapet's Group Layout?

Well, you have the right idea, start with HTML. once you master it, move on to CSS & XHTML. CSS is easily used to code web layouts. I do not know what marapets group is, but I'm sure they use CSS/DIVS or tables (not recommended)

There are some tutorials at http://w3schools.com but they contain alot of extra information and it can be confusing.

Hope I helped, good luck ^.^

scottish
21-10-2008, 08:07 PM
Lol HTML and visual basic are completely different..

w3schools is probably one of the best tutorial/teaching sites imho.

united-champ
23-10-2008, 03:16 PM
Habbdance +rep :)

thanks for ur help both of u ill try to code over my weeks holidays

Jackboy
26-10-2008, 03:17 PM
Don't even bother layouts yet.

Just practise basic html like tables + font styles.

Then when your fluent in normal html, learn layouts with css :D

united-champ
26-10-2008, 08:59 PM
HTMl is pretty easy for me now.

<html>
<header>
<b> WELCOME TO MY NEW HOMEPAGE </b>
</header>
<br> </br>
<body>
Hello, this is my brand new homepage, made by chris.
<br>
</br>
<p>
<p align "Center"> Yup, its mine.
</p>
</body>
</html>

Thats pretty easy ?

Center didnt work.. :)

Decode
26-10-2008, 09:12 PM
HTMl is pretty easy for me now.

<html>
<header>
<b> WELCOME TO MY NEW HOMEPAGE </b>
</header>
<br> </br>
<body>
Hello, this is my brand new homepage, made by chris.
<br>
</br>
<p>
<p align "Center"> Yup, its mine.
</p>
</body>
</html>

Thats pretty easy ?

Center didnt work.. :)
There are a few mistakes in there, but you do seem to be a quick learner :)

center didn't work because you need an = sign between align and "center", so it should be <p align="center">text</p>. You can also use <center>text</center> but I don't think that's valid XHTML.

The <header> tag doesn't exist, I think you mean <title>. Other than that that's very good. Well done :)

Trinity
27-10-2008, 06:19 PM
HTMl is pretty easy for me now.

<html>
<header>
<b> WELCOME TO MY NEW HOMEPAGE </b>
</header>
<br> </br>
<body>
Hello, this is my brand new homepage, made by chris.
<br>
</br>
<p>
<p align &quot;Center&quot;> Yup, its mine.
</p>
</body>
</html>

Thats pretty easy ?

Center didnt work.. :)

I suggest you go back to learning ;) But you seem to be starting to understand it, so just carry on and you should be fluent soon enough :)

Want to hide these adverts? Register an account for free!