13:05 ET Dow -154.48 at 10309.92, Nasdaq -37.61 at 2138.44, S&P -19.130 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 13:05 ET Dow -154.48 at 10309.92, Nasdaq -37.61 at 2138.44, S&P -19.1313:05 ET Dow -154.48 at 10309.92, Nasdaq -37.61 at 2138.44, S&P -19.13

.

.

Saturday, February 12, 2011

Cascading Style Sheets (CSS) versus Inline Styling in HTML

 Below is CSS styling in HTML

<style type="text/css">
<!--
#apDiv1 {
    position:absolute;
    width:680px;
    height:522px;
    z-index:1;
    left: 47px;
    top: 27px;
}
-->
</style>
<p></p>
<div class="col-2">
<h3 style="text-align: left;">&nbsp;</h3>
<h3 style="text-align: left;">&nbsp;</h3>
<div id="apDiv1">
  <p><img src="drcpage.jpg" width="680" height="522"> </p>
</div>
<h3 style="text-align: left;">Medical School</h3>
<ul>
<li>University of Texas - Medical Branch Residency</li>
<li>LA USC Medical Center</li>
<li>Cedar Sinai Medical Center</li>
</ul>
<h3 style="text-align: left;">Society Memberships</h3>
<ul>
<li>Past President OC Society of Otolaryngology</li>
<li>Fellow of the American College of Surgeons</li>
<li>Fellow of the American Academy of Otolaryngology - Head &amp; Neck Surgery</li>
<li>Member of the Orange County Medical Association</li>
<li>Member of the California Medical Association</li>
</ul>
<h3>Certifications</h3>
<ul>
<li>Board Certified in Otolaryngology</li>
<li>California Licensed Hearing Aid Dispenser</li>
</ul>
<h3>Hospital Affiliations</h3>
<ul>
<li>Hoag Memorial Hospital</li>
<li>Fountain Valley Hospital</li>
</ul>
<img src="images/stories/drcpage.jpg" border="0" alt="Richard G. Castanon, M.D., FACS" width="680" height="522" style="vertical-align: bottom;" /></div>


-------------------------------------------------------------------------------------
Below is inline styling in HTML

<h3>Richard G. Castanon, M.D., FACS</h3>
<p><strong>Dr. Castanon is long established and highly regarded in the medical  community.</strong> He has held many posts of distinction throughout his  career.  Dr.  Castanon has taught at USC &amp; UCI Medical schools as  Assistant  Clinical Professor.  He also has served as Chief of Staff and  Chairman  of the Department of Surgery at Huntington Beach Hospital and  Chairman  of the  Department of Otolaryngology at Hoag Hospital.</p>
<p> </p>
<h3 style="text-align: left;">Medical School</h3>
<ul>
<li>University of Texas - Medical Branch Residency</li>
<li>LA USC Medical Center</li>
<li>Cedar Sinai Medical Center</li>
</ul>
<h3 style="text-align: left;">Society Memberships</h3>
<ul>
<li>Past President OC Society of Otolaryngology</li>
<li>Fellow of the American College of Surgeons</li>
<li>Fellow of the American Academy of Otolaryngology - Head &amp; Neck Surgery</li>
<li>Member of the Orange County Medical Association</li>
<li>Member of the California Medical Association</li>
</ul>
<h3>Certifications</h3>
<ul>
<li>Board Certified in Otolaryngology</li>
<li>California Licensed Hearing Aid Dispenser</li>
</ul>
<h3>Hospital Affiliations</h3>
<ul>
<li>Hoag Memorial Hospital</li>
<li>Fountain Valley Hospital</li>
</ul>
<p><img src="images/stories/drcpage.jpg" border="0" alt="Richard G. Castanon, M.D., FACS"  style="position: absolute; width: 522px; height: 680px; z-index: 1; left: 464px; top: 75px;" /></p>