Try this one :
<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors</title>
<style>
/ Use universal selector in next line*/
*{
/* Add CSS properties here/
font-family:cursive;
}
h1{
color: orange;
}
p{
color: purple;
}
</style>
</head>
<body>
<h1>Studytonight</h1>
<p>Our mission is to empower young Students to be the inventors and creators.</p>
</body>
</html>