how can i use html and css together in notepad? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

how can i use html and css together in notepad?

2nd Dec 2019, 9:56 AM
Jossy Stepah
Jossy Stepah - avatar
2 ответов
+ 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