+ 1
how can i use html and css together in notepad?
2 Respostas
+ 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