0
How can i combine all javascript and css in html file in notepad++ to run in browser?
I mean what will be the extention code name?
2 Answers
+ 4
Use style tag inside head tag to define CSS and use script tag to define JavaScript. The script will be executed as soon as the browser will identity it. And extension will be html only.
+ 1
Valmob101 thanks