hiw to import external CSS code example
Example 1: how to refer to external style sheet
<html>
<head>
<link rel="stylesheet" type="text/css" href="Name.css">
</head>
<body>
.
.
.
</body>
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>