+ 3
Please how do i compile my html, css code in notepad++
to join the 2 codes to make up a web please
8 Respuestas
+ 5
First you have to include
<link rel="stylesheet" href="filename.css"> in the HTML file, where filename is the name of your CSS file. Remember to set the respective languages in the language menu in Notepad++.
If you have finished this, in the HTML file, click run->Launch in Chrome...
+ 4
Tricky question though.
1.Are you looking for a way of linking your CSS code to your html document ?
Or
2.Are you looking for how to preview your already written code ?
+ 4
Pretty easy,
In your html code, type the following code into your head or body tag.
<link rel="stylesheet" href="path/to/your/cssDocument.css" />
Note:: You have to replace "path/to/your/cssDocument.css" with the actual path to your CSS document.
+ 3
Welcomed✌
+ 2
thanks man it worked
+ 1
link
+ 1
its simple enough. just type <link rel="stylesheet" href="filename.css"> hope it helps
0
Hi