<style> This is a starting style tag. It indicates the beginging of a block of CSS code.
</style> This is an ending style tag. It indicates the end of a block of CSS code.
You can include CSS code in your file by putting style tags inside the head tags.
<!DOCTYPE html>
<html>
<head>
<title>Coding Cadets learn style!</title>
<style>
/* CSS code goes here */
</style>
</head>
<html>