w3schools html include css code example
Example 1: connect html file to css
<head>
<link rel="stylesheet" href="styles.css">
</head>
Example 2: how to add css in html
/*
adding css without a css file
*/
/*
in head add
*/
<style>
/* put in your normal css*/
</style>