How do u link a css file to a html one
so when u connect ur css to ur html
[deleted]
To start with, open up your html
document.. In the header section, add: <*link* rel="*stylesheet*" type="text/*css*" href="PATHTOCSSHERE">.
You want to change "PATHTOCSSHERE" with the path to the css file you are trying to link the html page to.
If my answer helped you, please mark it as answered. Thanks.
MuhammadHasnai3
nahi
Nayoar
<head> <!-- Other stuff inside head --> <link rel="stylesheet" src="/styles/main.css"> </head>
(replace /styles/main.css
with the location of your CSS file)
Please mark this as answered if you found it helpful!!