Web >> Design >> CSS >> What are the 2 ways to assign CSS style to a page

External

<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>

Inline

<head>
<style type="text/css">
hr {color:sienna;}
p {margin-left:20px;}
body {background-image:url("images/back40.gif");}
</style>
</head>