how can i use html and css together in notepad? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

how can i use html and css together in notepad?

2nd Dec 2019, 9:56 AM
Jossy Stepah
Jossy Stepah - avatar
2 Answers
+ 9
There are 3 ways of writing css 1) inline : Use style attribute for inline CSS on a specific tag Like <div style="styling goes here"></div> 2) internal : Use <style> tag in <head> Like <style>Style goes in between</style> 3) External Write css in separate file, link using <link> tag
2nd Dec 2019, 10:06 AM
Raj Chhatrala
Raj Chhatrala - avatar