How to link an HTML page to CSS page please someone!!!!! | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
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!!!

10th Mar 2019, 6:36 AM
Rometh
2 ответов
+ 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/
10th Mar 2019, 7:30 AM
Sudarshan Rai
Sudarshan Rai - avatar
+ 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
10th Mar 2019, 7:54 AM
Dan Leighton
Dan Leighton - avatar