What is necessary to create more advanced, dynamic and user friendly web pages? [closed]

StackOverflow https://stackoverflow.com/questions/3812877

  •  26-09-2019
  •  | 
  •  

Question

I am using HTML and CSS for creating web pages. I want my web pages to be more dynamic and user friendly, so which languages do I need to learn to do so?

No correct solution

OTHER TIPS

It depends on exactly you want to do, but you can do a lot with AJAX (Asynchronous JavaScript and XML) which "just" uses JavaScript and XML data files. As this still runs on the client side you don't need any changes to your web server. The content is still static.

To go further and generate content as requested you'll need to get into server side languages like PHP, ASP.NET etc. for which you might need a new hosting environment. These generate the page server site and the user views that. These still use JavaScript on the client side to perform the "user friendliness" though.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top