Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Css level 2 lesson 2

getting error please share the code
by

1 Answer

kshitijrana14
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>

Login / Signup to Answer the Question.