<!DOCTYPE html>
<html>
<head>
<title>HTML style tag</title>
<style type="text/css">
h2 {
font-size: 20px;
font-family: Verdana, Geneva, sans-serif;
font-weight: normal;
color: #196a8e;
}
p {
font-size: 15px;
color: red;
}
</style>
</head>
<body>
<h2>This example represent style element.</h2>
<p>This example represent style element.</p>
</body>
</html>