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