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

Css Level 11 lesson 4

it is not working
by

1 Answer

iamabhishek
Here is the correct answer:

<!DOCTYPE html>
<html>
<head>
<title>Changing font-size using Media query</title>
<style>
@media (min-width: 550px) {
body {
font-size:25px;
}
}

</style>
</head>
<body>
<h1>Studytonight</h1>
</body>
</html>

Login / Signup to Answer the Question.