0
What should I do to add css in html?
do I have to download some software?
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
+ 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 đ
+ 1
<link rel="stylesheet" type="text/css" href="theme.css">