I want to learn html/PHp/CSS/SQl

Status
Not open for further replies.

SaBteCh

Banned
Banned
529
2010
0
0
Hiya Guys,
Well, I am always amazed by custom sites and always wanted to be code my site ...

Well I think its time for me to start leaning but I don't know exactly where to start...

I need your help guys...

Please Tell me where to start learning, what to learn, what resources i need,
how to become a good coder and eventualy be able to code and desgin in php/html/css/sql etc...

Thanks..
 
36 comments
Thanks el_j i already know w3school :D....devzone seems awesome :D....
but man how will i be able to know how to make login..link checker etc..??
 
i have started the basics 5 minutes ago on w3school... html seems simple but i dunno how to memorize the codes fast =\
 
w3schools is nice, but i prefer HTMLDog, its how i learnt and its more of a laid back approach, like a friend explaining it to you, as opposed to w3schools, which is textbook-ish
 
Practice them

Create some useless html files, just to test

Play with the HTML codes, it's funny, you'll memorise it automatically then
 
<html>
<body>

<h>Hello World This is Me</h>
<p><h1>About me</h></p>
<a href="www.google.com">Go to google please ^^</a>
<p>See the image below :O</p>
<img src="http://www.buxsnap.com/templates/images/backgd.png" width="500" height="500" />

</body>
</html>


HAHAHAHAHA...awesome html :D
 
i now understand wat <br /> is....lolzz i was always wondering why they put that in html lolz...its to change line xD..sry im noob dunt laugh :(
 
<html>
<body>

<h>Hello World This is Me</h>
<p><h1>About me</h></p>
<a href="www.google.com">Go to google please ^^</a>
<p>See the image below :O</p>
<img src="http://www.buxsnap.com/templates/images/backgd.png" width="500" height="500" />

</body>
</html>


HAHAHAHAHA...awesome html :D

Actually you've an errors in this. You shouldn't have a <h1> tag inside a <p>

A <h1> tag is a heading tag. A <p> tag is a paragraph. You don't have a heading in a paragraph.

You also opened a <h1> tag but tried to close it with a </h> tag here:
<p><h1>About me</h></p>

It should just be:
<p>About me</p>
or
<h1>About me</h1>

http://www.w3schools.com/ is good but another one that's not too bad is http://www.tizag.com/ It's more text book ish as referred to earlier but I still find myself referring to it the odd time

Try adding a <head> tag and a <title> tag to your pages before the <body>. It's good practice.

Note: please use the edit button too. Don't double post :)
 
Status
Not open for further replies.
Back
Top