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.
6 ответов
+ 4
make sure to lower case the CSS
and that the html and css are in the same folder
+ 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>
+ 1
write this code between the title and body
<style type="text/css">
body{
*this where u can set ur css codes*
}
+ 1
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
+ 1
Thank you Everyone! I finally did it!
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>