0
How to link an HTML page to CSS page please someone!!!!!
I tried everything I could possibly think of but it didn't work. I searched the internet too! please some one answer for my question for godsake please!!!
2 Answers
+ 2
//you can only link Css page to html, you cannot link html to css, following lesson is for embedding css on html
https://www.sololearn.com/learn/CSS/1079/
+ 1
I take it you mean how to link an external .css file to an html page?
So this is the way to do it:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
You can find full instructions here:
https://www.w3schools.com/html/html_css.asp