I'm currently working on a website where this code will be loaded in an iframe on a different page. However, I've encountered an issue with the CSS that should change the background of the page. Even when I test it without the iframe, it still displays a white background. Any ideas on what might be causing this?
<!--Crafted, Authored, and Executed by Henry Edward Quinn IV in May of 2012 for a Company-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Additional Information About Equipment</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
<!--This segment of CSS styling is meant to ensure uniformity.-->
body {background-color:#ebf0f3;
font-family:Arial, Helvetica, sans-serif; }
</style>
</head>
<body>
<!--This page will be embedded in an iframe. Only the content within the body tags will be visible on the final page.
To keep things simple, limit the content to a few <p> tags.-->
<a href="PATH/equipment.txt" target="_parent">Find Out More</a>
<p>
Here we have some equipment with specific uses that are incredibly handy, especially in scenarios like A, B, and C.
</p>
</body>
</html>