<!DOCTYPE html>
<html>
<head>
<title>CSS Descendant Selector</title>
<style>
div p {
font-size:24px;
}
</style>
</head>
<body>
<div>
<p>Child Selector</p>
<div>
<p>Descendant Selector</p>
</div>
<h4>Child Selector</h4>
<p>Child Selector</p>
</div>
</body>
</html>