0

What should I do to add css in html?

do I have to download some software?

10th Feb 2018, 4:41 PM
Gokul Krishna
Gokul Krishna - avatar
3 Answers
+ 2
3 ways of adding css to html: 1. <head> <style> /* Your css code */ </style> </head> 2. <h1 style="/*your css for element h1*/"></h1> 3. <head> <link rel='stylesheet' href='style.css'> </head> The third is the best one
10th Feb 2018, 4:45 PM
Ice
Ice - avatar
+ 2
No you don't need to download any software. just link your css file to your html file <link rel="stylesheet" type="text/css" href="cssfile.css"> visit this link . https://www.w3schools.com/css/css_howto.asp Everything releted to question is given in this . All the best 👍
10th Feb 2018, 4:45 PM
Hrishikesh Kulkarni
Hrishikesh Kulkarni - avatar
+ 1
<link rel="stylesheet" type="text/css" href="theme.css">
10th Feb 2018, 4:46 PM
Leonardo Medai Cossutta
Leonardo Medai Cossutta - avatar