Home > CSS Questions > How can you integrate CSS on a web page?
example: <p style="color:blue">Hello CSS <p>
example: <style> p{color:blue} <style>
example:
p{color:blue}
You need to link this style.css file to your html pages like this:
<link rel="stylesheet" type="text/css" href="style.css">