Demonstrate the various ways that styles can be added to a page? code example
Example 1: how to like css to html
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title</title>
<link rel="stylesheet" type="text/css" href="path of your file" />
</head>
</html>
Example 2: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>