inherit
1299
0
Dec 29, 2011 1:22:45 GMT -8
Blade
2,307
December 1999
vr2
|
Post by Blade on Aug 7, 2005 21:55:09 GMT -8
Well,
I want to getting into the coding world. What is one of the easiest languages to learn for a clue less n00b like me =P
PS: Sorry if this thread is located in the wrong board
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Aug 8, 2005 1:23:22 GMT -8
To start with, it is essential you learn HTML. It's pretty easy to pick up the basics and can be very useful too. Learning basic CSS helps too. Just read through some of their tutorials and see how you get on
|
|
inherit
17569
0
Aug 14, 2023 13:11:03 GMT -8
frufru
11,774
December 2003
frufru
|
Post by frufru on Aug 8, 2005 14:50:09 GMT -8
he never specified website programming. I'd say that Visual Basic is easiest. The code is just like English. I wrote a tutorial myself but it died when my admin made sudden changes to the board it was on. www.vbtutor.net/vbtutor.html
|
|
inherit
29687
0
Dec 11, 2006 0:27:09 GMT -8
Legendary SSJ Goku
The Legendary Strength revealed...
450
August 2004
lssjg
|
Post by Legendary SSJ Goku on Aug 9, 2005 0:42:46 GMT -8
i say the easiest and most helpful is HTML... because then you can get on to nice stuff like JS and PHP easy, without having to learn something that looks different! OK this is how HTML works.... But before i start, open notepad and save the files as "filenamehere.html" with the " and " to make sure it is an HTML type! Or you can use HTML-Kit or dreamweaver or somethin g like that! <html> <head> This is where the styles and page related stuff goes... Stuff in here is considered being in the head or the header </head> <body> Your content goes here.... stuff in here is considered being in the body or the body of the page </body> </html> Notice something? Everything is <blah> and then </blah> get it, something and /something of course with < and > on either side... <html> <head> <title>Title of web page goes here</title> </head> <body> </body> </html> The new thing is that title tag.... 'tag' is the name given to what you see above... like the html tags are the <html> and </html> and the body tags and the <body> abd tge </body> Get it.... NOw, what does title do? Welll if you liike up the top of your screen you will see ProboardsSupport - Whats the easiest language to learn? well that it your title.... you don't seee it on the page, you see in as the title of the window.... Ok... i wont continue fro here because this is taking me for ever and i don't have enough time now... so if you want anymore go to www.google.com and type "html learn" without the " and "
|
|