+ 1
What should i do to combine css file and html
please reply
3 Answers
+ 1
Make sure that css file and html file are in the same forlder
then in html file type in the head tag the link tag to associate html with css external file
<head>
<link rel="stylesheet" href="styles.css">
</head>
style.css here is just the name of the css file replace it with your own file's name
+ 2
thankx for positive answer
0
https://www.w3schools.com/html/html_css.asp
here, look up External CSS