I have a HTML page and an external style sheet
1) index.html 2) style.css
The structure of index.html as below
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
my content............
</div>
<div>
<!--- HTML Content to be displayed here which will not get affected by any of the styles loaded in the page-->
[html content]
</div>
<div>
some content here also............
</div>
</body>
</html>
How to this, So that an block element will not get affected by any styles, only inline style will apply.