0

How do I link CSS file to the html file?

I want to link the CSS file to the HTML document that I created.

18th Nov 2016, 8:00 AM
Jubin Kc
Jubin Kc - avatar
6 ответов
+ 4
make sure to lower case the CSS and that the html and css are in the same folder
19th Nov 2016, 9:54 AM
Burey
Burey - avatar
+ 2
and if u have two files .html n css u shoul write this <head> <title></title> < link rel="stylesheet" type="text/css" href="your Css file here.css"> </head>
18th Nov 2016, 8:13 AM
mohamed ahmed
mohamed ahmed - avatar
+ 1
write this code between the title and body <style type="text/css"> body{ *this where u can set ur css codes* }
18th Nov 2016, 8:06 AM
mohamed ahmed
mohamed ahmed - avatar
+ 1
<head> <link rel="stylesheet" type="text/css" href="style.css"> </head>
18th Nov 2016, 2:21 PM
Dhruv Saxena
Dhruv Saxena - avatar
+ 1
Thank you Everyone! I finally did it!
19th Nov 2016, 12:15 PM
Jubin Kc
Jubin Kc - avatar
0
I created a CSS file with name Load.CSS so would it be.. <head> <title> Loading</title> <link rel="stylesheet" type="text/CSS" href="load.css"> </head>
19th Nov 2016, 8:32 AM
Jubin Kc
Jubin Kc - avatar