<!-- File based CSS: Change style.css to your script path or link. -->
<link href="style.css" rel="stylesheet" type="text/css">
<!-- Or inline CSS: -->
<style type="text/css">
/* Add your css here */
</style>
<style type="text/css">
p {
color: #26b72b;
}
</style>
<p style="color:red;">The text appear red.</p>
A text that uses A LOT the style tag:
<!doctype html>
<html>
<body>
<p class="example" style="border:solid 15px red; color: orange; background-color: blue; cursor: pointer; ">A text</p>
</body>
</html>
<html>
<head>
<style>
h1 {color:red;}
p {color:blue;}
</style>
</head>
<body>
<h1>A heading</h1>
<p>A paragraph.</p>
</body>
<p style="color: red">text</p>
<html>
<body>
<!-- BODY HTML -->
</body>
<head>
<!-- HEAD HTML -->
</head>
<style>
/* CSS */
</style>
<style>
/* Put in CSS */
</style>
// Style tags belong in <head>