Back

WEBKATA HTML-28

Created 2 years ago
81 Views
2 Comments
prashanthXRG1Us
@prashanthXRG1Us
prashanthXRG1Us
@prashanthXRG1UsProfile is locked. Login

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>

Comments (2)
Please login to comment.