0
I think you are asking how to link styles defined from a CSS file into a separate HTML file. This would be called an "external CSS" document. The way you link it is to use a <link> tag within the html <head> tag. For example: <head> <link rel="stylesheet" href="example.css"> </head> This would link the information from example.css into the html page so that the styles defined there would be used. Something to note about file structure as well. In this example the example.css page has to be in the same folder as the .html page because it is using a relative file path that begins in the current directory.
9th Sep 2016, 2:06 AM
Ryne
Ryne - avatar