0
Hello can anyone tell me how to create css file in html in computer
I'm using a notepad
5 Answers
0
If you are using note pad,
<html>
<head>
<style>
Your CSS goes here
</style>
</head>
<body>
</body>
</html>
0
can you please tell me about how to create another file for css and another for html
0
You want to create separate html and CSS files?
0
create a .css file as "style.css".
then insert a link to this in the head section of your html file, like this...
<html>
<head>
<link type=" text/css" rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
cheers...