Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Melinda Harnish
45 PointsWhy does my code look great in coffee cup but when i post it to my website it looks different
<!doctype html> <html lang="en">
<head> <style>
body { margin: 100px 40px 10px 70px; }
h1, h2{ font-family: "Arial"; color: black; text-align: left; font-weight: normal; padding-top: 25px; padding-bottom: 2px; width: 75% }
p { font-family: "Arial"; font-size: 20px
}
h3{ font-family: "Arial"; font-size: 25px; font-weight: normal;
}
h4{ font-family: "Arial"; font-size:20px; font-weight: normal;
}
h5 {
font-family: "Arial"; font-size: 15px; font-weight: normal; text-indent: 10px;
}
.right { float: right; margin-right: 705px; margin-top: 205px;
}
table { border: 1px solid black; border-collapse: collapse; word-wrap: break-word;
}
customers {
font-family: "Arial";
border-collapse: collapse;
width: 75%;
}
customers th {
vertical-align: bottom;
text-align: center;
padding-top: 9px;
border: 1px solid grey;
font-weight: normal;
}
customers td {
text-align: left;
padding-top: 9px;
padding-bottom: 1px;
}
</style> </head>
<head> <title>SIEMENS 3TF2010-0AK6</title> </head>
<body>
<figure class="r right"><img src="../ControlPartsPics/3tf(2).jpg" width="400" height="400" alt="" title="" /></figure>
<h1><strong>3FT2010-0AK6</strong><font color="00808"><br>SIEMENS</font></strong> Contactor<font-weight="normal"</h2>
<h3>Price: <font color="orange">$87.80</h3></font>
<p>
The Siemens <strong>3TF2010-0AK6</strong> is a</br>
3-phase IEC rated contactor<br> used for the control
of electric <br>motors. It is rated 3 H.P. at</br>
230V and 5 H.P. at 460V. It comes<br>
with <strong>1NO</strong> auxiliary contact. 10E
</p>
<h4>Operating coil voltage:</h4>
<h5>110V50HZ, 120V60HZ</h5>
<ul><a href="http://www.controlparts.com/siemens.relays/3tf2-contactors">Other 3TF2 contactors</a></ul>
<h4>Accessories:</h4>
<ul><a href="http://www.controlparts.com/siemens.relays/3tf2-contactors">Auxiliary Contact Blocks</a></ul>
<ul><a href="http://www.controlparts.com/siemens.relays/3tf2-contactors">Surge Suppressors</a></ul>
<h4>Overload Relays:</h4>
<ul><a href="http://www.controlparts.com/siemens.relays/3tf2-contactors">Thermal Overload Relays</a></ul>
<p><img src="../ControlPartsPics/PDFpic.jpg" width="55" height="65" alt="" title="" /><a href="http://www.controlparts.com/siemens.relays/3tf2-datasheet">View a data sheet</a></p>
<h2>Siemens Motor Starter Contactors - Series 3TF2010-0AK6</h2>
<h4><strong><font color="00808">3TF2010-0AK6</font> CONTACTOR, AC 110V 50HZ/120V 60HZ 3-POLE, SIZE S00 ordering data</strong></h4>
<table id="customers">
<tr>
<th colspan="2">Amp <br>ratings</th>
<th colspan="2">Single phase<br>HP ratings</th>
<th colspan="4">Three Phase<br>HP ratings</th>
<th colspan="2">Auxiliary<br>contacts</th>
<th colspan="2">Screw<br>Terminals</th>
</tr>
<tr style="background-color:#d7eaff">
<th>AC3</th>
<th>AC1</th>
<th>115V</th>
<th>230V</th>
<th>208V</th>
<th>230V</th>
<th>460V</th>
<th>575V</th>
<th>NO</th>
<th>NC</th>
<th>Order No.</th>
</tr>
<tr style="background-color:#FFEbd7">
<td>9</td>
<td>22</td>
<td>1/2</td>
<td>1 1/2</td>
<td>3</td>
<td>3</td>
<td>5</td>
<td>5</td>
<td>1</td>
<td>0</td>
<td>3TF2010-0AK6</td>
</tr>
</table>
<h4><strong>3TF2010-0AK6</strong> Contact Sequence</h4>
<img src="../ControlPartsPics/3tf2010-0ak6sequencechart.jpg" width="400" height="400" alt="" title="" />
</body> </html>
1 Answer
Jeremy Hill
29,567 PointsOne thing I will point out is that your website won't be consistent among all the browsers. I've heard that it is good practice to check out your website in different web browsers.