<!DOCTYPE html>
<html>
<head>
<title>CSS tag name Selector</title>
<style>
h4 {
font-size:24px;
}
</style>
</head>
<body>
<h4>This is h4 heading text</h4>
<p>This is paragraph text</p>
<h1>This is h1 heading text</h1>
<h4>This is another h4 heading text</h4>
</body>
</html>