html style tag in body code example
Example 1: html style tag type
<style type="text/css"></style>
Example 2: where do you put style tags in html
// Style tags belong in <head>
Example 3: html style tag
<html>
<body>
<!-- BODY HTML -->
</body>
<head>
<!-- HEAD HTML -->
</head>
<style>
/* CSS */
</style>