how to add external css to html file 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: how to link an css file to html
<link rel="stylesheet" href="hi.css">