+ 1
What is the best language to use for blogs or article sites?
So I want to make my own blog. But I don't know what language to use...
3 Respostas
+ 2
html and if you want it to look really cool css. if there should be any user interaction javascript and if there is data incoming from users that should be saved on a server php.
+ 2
For the basic structure of the site you will need HTML, CSS and maybe a bit of JS
To add the content dynamically you will need SQL and PHP (or some other language for the Backend such as Ruby, Python, JS, etc) or also some generator of static sites like Pelican or Jekyll
+ 2
@lucien @Mickel Sánchez thank you all!