Asked By
alex@o
320 points
N/A
Posted on - 04/23/2011
<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
Â
Sample html and css for proof read
Â
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
Â
Sample html and css for proof read
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.