+ 1
What is css and js?
6 Answers
+ 4
Html is the skeleton, it's kind of a rigid structure. The css is the things that you put on the skeleton, like muscle, colour, skin etc.
The js = javascript represents the movement, the dynamic stuff
.....which happens in real-time on the website without making requests and waiting for a server.
+ 2
css: in the <head> tag, add a <style></style> tag in it and insert your css in there
js: in the <body> tag, under all the html content, add a <script></script> tag and insert your js in there
+ 1
how we use that css and js while using html?
+ 1
you lik them in html
1) Css
<link rel="stylesheet" href="lication of the file.Css" >
2)Js
<script src=" location file.js" > </script>
+ 1
thanks @mcjeh &@Elie Douaihy
+ 1
Work by CSS can be viewed on Webpage interface whereas JS works most of it in Backgroung and HTML is the base for all the Webpage developing languages.