css styling

CSS
<link rel="stylesheet" href="styles.css"><link rel="stylesheet" type="text/css" href="style.css"><style>
#panel{
      height: 60%;
      margin-top: 7%;
      margin-left: 10%;
      margin-right: 10%;
      font-family: myriad-pro, sans-serif;
      font-style: normal;
      font-weight: 300;
    }
</style><p style="color: blue; font-size: 46px;">  <link rel="stylesheet" href="PathToYourFile.css">/*a normal, unvisited link*/
a:link{
	color: green;
}
/*a link the user has visited*/
a:visited{
	color: purple;
}
/*a link when the user mouses over it*/
a:hover{
	color: yellow;
}
/*a link the moment it is clicked*/
a:active{
	color: brown;
}
Source

Also in CSS: