HTML

Topic: Links

How to link an external css file to HTML?

The <link> tag is used to link an external file and the type attribute should be set to "text/css" to refer a style sheet.Example:<html><head><link rel="stylesheet" type="text/css" href="styles.css" /></head></body></html>

Browse random answers: