0

Hello can anyone tell me how to create css file in html in computer

I'm using a notepad

6th Aug 2018, 1:56 PM
Steve
5 Respuestas
0
If you are using note pad, <html> <head> <style> Your CSS goes here </style> </head> <body> </body> </html>
6th Aug 2018, 2:09 PM
Dlite
Dlite - avatar
0
can you please tell me about how to create another file for css and another for html
6th Aug 2018, 2:11 PM
Steve
0
You want to create separate html and CSS files?
6th Aug 2018, 2:13 PM
Dlite
Dlite - avatar
6th Aug 2018, 10:28 PM
Janning⭐
Janning⭐ - avatar
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...
7th Aug 2018, 1:21 AM
Lorenzo Sandoval
Lorenzo Sandoval - avatar