No of visitors who read this post:
267
Category:
Prog\Scripting Languages
Type:
Question
Author:
Alex@o
<html>
<title> Poverty Eradication in the world</title>
<style>
<link rel="stylesheet" type="text/css" href="body.css"/>
</style>
</head>
<body class="body">
<h2>POVERTY is a reality, Eradicating it is task</h2>
<p>
Poverty is a issue of the world and we cant just see it consuming the human fraternity while we do nothing
it begins with you and me.
so let us avoid laziness in order to wipe a way this persistent enemy called the poverty.
Join my campaign, <a href="#">fight poverty</a> by <b>alexovey<b>
</p>
</body>
</html>
and corresponding css
.background:rgba(12,12,12,0.75);color:orange
some to help me make it work
- Login or Signup Now to post comments

your coding is pretty okay apart from the omission of the opening head tag only and everything is perfect: we have tried it to work:
it should be as follows:
<html>
<head>
<title> Poverty Eradication in the world</title>
<style>
<link rel="stylesheet" type="text/css" href="body.css"/>
</style>
</head>
<body class="body">
<h2>POVERTY is a reality, Eradicating it is task</h2>
<p>
Poverty is a issue of the world and we can't just see it consuming the human fraternity while we do nothing
it begins with you and me.
so let us avoid laziness in order to wipe a way this persistent enemy called the poverty.
Join my campaign, <a href="#">fight poverty</a> by <b>alexovey<b>
</p>
</body>
</html>
and corresponding css
.background:rgba(12,12,12,0.75);color:orange
some to help me make it work
always keep in mind that all html tags that have a closing tags have an opening tag. so in your case, opening head tag is missing. fix and i hope the css and the html docs are in separate docs and save appropriately(css- "name.css" and html- "name.html").
it works, I have proved it.