+ 2
what is different html to JavaScript ?
7 Respuestas
+ 4
Html is used to build static Web page which only provide information whereas js is script used to make Web page interact with user
+ 3
JavaScript is one of the 3 languages all web developers must learn:
1. HTML to define the content of web pages
2. CSS to specify the layout of web pages
3. JavaScript to program the behavior of web pages
+ 2
Html is hyper text markup language and JavaScript is an object oriented language!
+ 1
html is used to design the website and javascript is used to decide what a website would do means it's behaviour
+ 1
Both are relative.
0
Most of the answers to the question are correct.
A HTML script allows you to create web page which displays to client(end viewer) but cannot do anything further.
JavaScript plays a role of making the same web page with user interaction, for an example validation of text field(form action), page animation, etc.,
0
Basically, HTML is a Hyper-Text Markup Language, which means it is use for designing in terms of Web Page. It has its own structure. Meanwhile, JavaScript is a dynamic language that allows you to manage events from the HTML layer.