Type Selector in CSS
<html>
<head>
<title>CSS Type Selector</title>
<style type="text/css">
abc {
color: red;
font-size: 150%;
font-family: book antiqua;
Text-decoration: underline;
}
</style>
</head>
<body>
<abc>This is about type selector</abc>
</body>
</html>