How to source CSS in Html5 -


i've source css file on html5 file out of millions of ways i've seen on internet none seem work. (btw css file in same folder html file.)

to load css ressource in html5 document, use link element inside head element.

in following example, ressource style.css located in same folder html file:

<!doctype html> <html lang="en"> <head>     <meta charset="utf-8">     <link rel="stylesheet" href="style.css">     <title>title</title> </head> <body>  </body> </html> 

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -