In: Computer Science
Create a Web page about a book ( The Richest Man in Babylon) that includes the following:
-page title
-a meta keywords tag with at least (5) keywords
-a meta description tag
-a meta robots tag to allow indexing, but not permit crawling of the site
Also, provide 1-2 paragraphs of content with three relevant text links.
Code:
<!DOCTYPE html>
<html>
<head>
<!-- The following is the page title-->
<title>The Richest Man in
Babylon</title>
<!-- The following sets meta tag with
keywords-->
<meta name="keywords" content="HTML, Richest Man,
Babylon, The Richest Man in Babylon, Richest Babylon Man">
<!-- The following sets meta tag with
description-->
<meta name="description" content="This page
contains a brief note on the book The Richest Man in Babylon with
relevent links.">
<!-- The following sets meta tag with robots to
index and not to follow-->
<meta name="robots" content="index,
nofollow">
</head>
<body>
<!--The follwing line sets a heading-->
<h1>The Richest Man in Babylon</h1>
<!-- Two paragraphs with some text and links to
relevant sites.-->
<p>The book named "The Richest Man in Babylon"
is written by George S. Clason. This book gives financial advises
that were set in the ancient Babylon.
Refer to the <a href="add a link
here">Wiki</a> for more information.</p>
<p>This book contains the seven simple rules of
money. One can learn how to be wealthier with every penny they
save. It not only tells us how to save money but also tells us how
wisely to spend money. For more information read the book at <a
href="add a link here">Link</a>.</p>
</body>
</html>
Code in the image:
Output:
Note: As providing URLs is agains Chegg Policy, I haven't provided the reference links. Please replace the add a link here with the relevant links.