hrml link css file code example
Example 1: adding css to html
<head>
<!-- Linking external Css document -->
<link rel="stylesheet" href="styles.css">
<!-- Writing Css inside HTML element -->
<style>
...
</style>
</head>
Example 2: css without separate file
just add any style inside the first <p> or other element tag using style=" ;"
<p style="font-size: xx-large;">test</p>