+ 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
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.
+ 3
Thankyou very much
+ 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.
+ 1
You can use HTML, CSS, Java or JavaScript.
HTML is the content.
CSS is the presentation.
Java or JavaScript is the behavior.
+ 1
Thankyou
+ 1
You are welcome.
+ 1
Do not confuse Java and JavaScript, it has a totally different purpose. For web development, use JavaScript, NOT Java.
+ 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).