I followed this tutorial at but when I added CSS, it doesn't seem to be applied correctly.
<HTML>
<HEAD>
<TITLE>Pet Store Sale!</TITLE>
<style type="text/css">
body {
margin: 0 0 0 0;
padding: 0 0 0 0;
text-align: center;
background-color: #FFF;
border-top: 3px solid #CCC;
}
#container {
position: relative;
width: 860px;
height: 1600px;
margin: 84 auto 0 auto;
padding: 0 0 0 0;
background-color: #FFF;
}
// rest of the CSS styles...
</style>
</HEAD>
<BODY>
// HTML content...
<p class="woodtwo">. . .</p>
<div id="line"></div>
<div id="line"></div>
</div>
</BODY>
</HTML>
I also attempted to add CSS using:
<link rel="stylesheet" href="./style/css/emailFormat.css" type="text/css" media="screen" />
but that didn't work either. Can anyone advise on the correct way to apply CSS to this page? Thank you.