+ 2

What languages should I learn to build a complete website?

I think HTML, CSS,Java? tell me what these are and what can we do with them

12th Mar 2017, 5:51 PM
Tech Guru Rohan
Tech Guru Rohan - avatar
8 Respostas
+ 5
html is the layout of your website the user will see. css is the style of the site. java isn't what you want for a website. you'd be better to learn javascript which is the functionality like clicking on things and that sort of thing.
12th Mar 2017, 5:54 PM
Eric Kershner
Eric Kershner - avatar
+ 3
Thankyou very much
12th Mar 2017, 5:56 PM
Tech Guru Rohan
Tech Guru Rohan - avatar
+ 2
I agree with David. we can't stress enough they are 2 different things. java is much more complex and great for developing programs and other things but not for websites. not good for a starter language either. I'd start with html bro.
12th Mar 2017, 6:30 PM
Eric Kershner
Eric Kershner - avatar
+ 1
You can use HTML, CSS, Java or JavaScript. HTML is the content. CSS is the presentation. Java or JavaScript is the behavior.
12th Mar 2017, 6:06 PM
Mohamad Abdelhafiz
Mohamad Abdelhafiz - avatar
+ 1
Thankyou
12th Mar 2017, 6:09 PM
Tech Guru Rohan
Tech Guru Rohan - avatar
+ 1
You are welcome.
12th Mar 2017, 6:11 PM
Mohamad Abdelhafiz
Mohamad Abdelhafiz - avatar
+ 1
Do not confuse Java and JavaScript, it has a totally different purpose. For web development, use JavaScript, NOT Java.
12th Mar 2017, 6:27 PM
David Koplik
David Koplik - avatar
+ 1
HTML, CSS, JavaScript and PHP+SQL (learn by this order). HTML has the page content and structure, CSS adds color and style, JavaScript adds interactivity by changing HTML or CSS on mouse click/hover, etc. PHP is very useful because of the "include" feature, allowing you to place your header/nav/footer elements in separate files and call them in every page files. A change in the footer file will affect all the pages in which it was called. You also need PHP and SQL to handle log-ins, forums, forms and anything else involving a database (storage of data).
12th Mar 2017, 8:20 PM
Jose Oliv
Jose Oliv - avatar