css course 1 linking css with html

css course 1 linking css with html


<!DOCTYPE html>
<html>
<head>
	<link rel="stylesheet" type="text/css" href="website.css">
	<title>website</title>
</head>
<body>
<style type="text/css">
	
	body{
background-color: red;
}

</style>

<p style="color: yellow;" >hello wolrd</p>

</body>
</html>