How we can join css with HTML like we write HTML coding in Notepad but how to link that with HTML? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

How we can join css with HTML like we write HTML coding in Notepad but how to link that with HTML?

19th May 2019, 1:11 PM
Aryan Grover
Aryan Grover - avatar
2 Antworten
+ 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 !!!
19th May 2019, 1:25 PM
Nova
Nova - avatar
+ 1
Thanks for the Answer
22nd May 2019, 10:59 AM
Aryan Grover
Aryan Grover - avatar