Computer scienceFrontendHTMLHTML IntroText formatting

HTML Quotations

Use quotations

Report a typo

"Pride and Prejudice" is a novel written by Jane Austen. In the HTML code below, use quotation tags to display the name of the author and the novel.

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Citation Example</title>
</head>
<body>
Jane Austen
Pride and Prejudice - Pride and Prejudice is an 1813 novel of manners written by Jane Austen. The novel follows the character development of Elizabeth Bennet, the dynamic protagonist of the book who learns about the repercussions of hasty judgments and comes to appreciate the difference between superficial goodness and actual goodness.
</body>
</html>

Completed 1 of 3
Embed author's name in short quotation tag
Indent the novel's name and its description using another quotation element
___

Create a free account to access the full topic