SA-MP Forums Archive
Need Information about html coding - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: Need Information about html coding (/showthread.php?tid=495935)



Need Information about html coding - JeaSon - 19.02.2014

Hello everyone im from pakistan ! and i wanted to learn html,css coding If is there anyone who can teach me free coz we are not allowed to use paypal in pakistan and my age is 17 ..! plz tell is there anyone who can ??


Re: Need Information about html coding - ACI - 19.02.2014

http://lmgtfy.com/?q=CSS+Tutorial
http://lmgtfy.com/?q=HTML+Tutorial

Was it that hard?


Re: Need Information about html coding - Vince - 19.02.2014

This is your standard template:
Код HTML:
<!DOCTYPE html>
<html>
	<head>
		<title>Page Title</title>
	</head>
	<body>
		<p>Content</p>
	</body>
</html>
For other elements, see here: https://developer.mozilla.org/en-US/...b/HTML/Element


Re: Need Information about html coding - NewerthRoleplay - 19.02.2014

This is where I learnt HTML and CSS, if you're interested in PHP then look up phpacademy on *******


Re: Need Information about html coding - Twizted - 19.02.2014

Quote:
Originally Posted by ACI
Посмотреть сообщение
You could atleast try to be less of a skank (as you have been lately) and provide useful links, just like Vince did.

@Namer, w3school is a very informative website that covers HTML very well. If you click here, you will automatically redirect to the page that informs you about HTML. Then it's all about being a little creative! CSS will also become handy.


Re: Need Information about html coding - JeaSon - 19.02.2014

everyone thankx for giving me alot of information about html and css


Re: Need Information about html coding - Misiur - 19.02.2014

For the love of god, avoid w3schools at all costs! http://www.w3fools.com/

Use:
https://developer.mozilla.org/en-US/learn/html
http://docs.webplatform.org/wiki/html
If you have dreamspark, there are great materials as well.


Re: Need Information about html coding - Sublime - 19.02.2014

Quote:
Originally Posted by Misiur
Посмотреть сообщение
For the love of god, avoid w3schools at all costs! http://www.w3fools.com/

Use:
https://developer.mozilla.org/en-US/learn/html
http://docs.webplatform.org/wiki/html
If you have dreamspark, there are great materials as well.
You know w3schools fixed all errors pointed out by w3fools, although it all depends on the learner.


Re: Need Information about html coding - Misiur - 20.02.2014

That's good news! But I still believe mdn is the best source out there (community reviewed and what-not)


Re: Need Information about html coding - Michael@Belgium - 20.02.2014

Quote:
Originally Posted by Misiur
Посмотреть сообщение
For the love of god, avoid w3schools at all costs! http://www.w3fools.com/
Wat. W3Schools is the best you can get for CSS / HTML. For php you can use phpacademy - Best tutorials for php. Although they have also javascript, mysql, css and more tutorials !

Quote:
Originally Posted by Vince
Посмотреть сообщение
This is your standard template:
Код HTML:
<!DOCTYPE html>
<html>
	<head>
		<title>Page Title</title>
	</head>
	<body>
		<p>Content</p>
	</body>
</html>
For other elements, see here: https://developer.mozilla.org/en-US/...b/HTML/Element
Actually ...
Код HTML:
<!DOCTYPE html>
<html>
	<head>
		<title>Page Title</title>
	</head>
	<body>
		<p>Content</p>
	</body>
        <footer>
                &copy; 2014
        </footer>
</html>