What Error in this code?
QUS: Add font-family 'Arial' to the given paragraph text "This is a paragraph"
ANS :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Static Template</title>
<style>
p {
font-family:Arial;
}
</style>
</head>
<body>
<p>"This is a paragraph"</p>
</body>
</html>