0
How Can i link Javascript to my Css Code?
3 Answers
+ 6
https://code.sololearn.com/WGekn7h94aGz/?ref=app
you just cannot link JavaScript to css
your need html as third party
0
You cannot link Javascript directly to your CSS code, but you are able to modify your CSS attributes using JS.
Iâd recommend going through the HTML/CSS/Javascript tutorials as they give you an excellent introduction into using all three together.
0
No. Usually, what a developer would do is linking a .css file and a .js file into your HTML document. HTML is a language to deliver contents, it's the first language of the web. CSS and JavaScript were developed later to enhance the user experiences.