css .body code example

Example 1: html body tage

<!DOCtype html>
<html>
   <body>
   		<!--This is the HTML Body tag.-->    
  </body>
</html>

Example 2: how to style body using css

body {
  /*type your styling here*/
}

Example 3: css in head or body

<head>
 <style>
  .myclass { font-size: 12px; }
 </style>
</head>
// or ...
<body>
 <button style="font-size: 12px;"></button>
</body>

Example 4: html body tag

<body>
  <!-- this is the body,the body 
	lement contains all the contents of an HTML document, 
	such as headings, paragraphs, images, hyperlinks, tables,
 	lists, etc -->
</body>

Tags:

Css Example