0
How to connect my html to my css file?
2 Answers
+ 4
Right is to connect YourCSSfile to HTML-file. Way is up. Remember only that <link>-element has three attributes: rel, type and href:
<head>
<link rel="stylesheet" href="YourCSSfileName.css" type="text/css" />
</head>
+ 2
There is a simple way:
<head>
.
.
.
<link rel="stylesheet" href="filename.css" />
.
.
.
</head>
Replace filename.css with your own.