+ 1
Please how do i link my css code to my html code?
Html/css
6 Respuestas
+ 10
<link href="source" rel="stylesheet" />
+ 3
you can also write the CSS code in <style> tag usually placed inside the <head> tag
+ 2
Thank you
+ 2
In code playground, the three tabs 'html', 'css' and 'js' are automatically linked to each others...
That's mean the css and js code are silently linked in head of html code ( so for js code we need to care of Dom content loaded before trying to access it, usually by using something like the 'window.onload' event ).
+ 1
<link rel="stylesheet" type="text/css" href="your css"/>
- 2
M building a web page and there are three menus "html' 'css' and 'jv'. How do i link the css menu to the html page or does it do that automatically?