25 Feb 2015

External CSS Style Sheet

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


Internal CSS Style Sheet

<head>
<style>
body {
    background-color: green;
}
h1 {
    color: maroon;
    margin-right: 50px;
}
</style>
</head>