+ 1
Web Development & Android App
Hello community, my questions: Which other language are required to program -a website/blog (html, css, JavaScript, …?) -a database oriented page And... Which other language are required to program -an android app (java, php, sql, …(and xml)?) Thank you 🙏🏻 😊
2 Respostas
+ 7
A basic website can be made with just HTML. A nice looking informational site would need CSS. An interactive website would need JavaScript. Beyond that, not much else is "required" for a static website. You may wish to dynamically serve the blog, in which case you would want to add a back end language (any one will do as server-side programming is much more flexible than client-side programming). There are probably plenty of terms here you will want to look up later.
For databases, start with SQL. There will be plenty of opportunity to explore non-SQL ("NoSQL") solutions after.
You can repurpose your HTML, CSS, and JS to make an Android app with PhoneGap ("WebView"), but Java and Kotlin are the more common choices.
https://www.sololearn.com/learn/1439/?ref=app
I hope this helps. 🙂
Happy coding!
+ 7
Various languages such as PHP and many types of js are used to program a website. But main are html css n js n php
Thanks