0
How we can join css with HTML like we write HTML coding in Notepad but how to link that with HTML?
2 Respuestas
+ 21
Hello
See here you can do two things
1> Use Internal CSS
You can use style tag and embed your CSS code in between the <style> and </style> in the same file either in head element or in the body element.
2> Use External CSS
You can create a new file in the same folder where your html file is located. Save it with .css extension. Embed your CSS code in that file and save. Link that CSS file to the html file by using link tag. <link href="file_name.css" rel="stylesheet" type="text/css">
Hope This Helps !!!
+ 1
Thanks for the Answer