+ 3
So, it needs only one Link to connect css and html?
6 Answers
+ 3
Yup, you only need one link for every external CSS file that you need to use for your HTML.
+ 1
Yes. This is because the link tag is placed in the head section and therefore you cannot give the link a name.
0
Yes all you need is a css file and an html file, then just link and href the file name
0
yes you only need to create a CSS file and in your head section of html file link like this
<link rel="stylesheet" href="example.css" type="text/css" />
here,example is the name of the css file.
0
What is I make a separate css document but put it in the same folder as my html document,would I link it the same way
0
yes