Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE>DIV & SPAN: Simulating Table Layout</TITLE>
<STYLE>
.hs1 {COLOR: #ffffff;
BACKGROUND-COLOR: #333333; WIDTH: 150px;
TEXT-ALIGN: center; MARGIN: 2px}
.hs2 {COLOR: #ffffff;
BACKGROUND-COLOR: #333366; WIDTH: 100px;
TEXT-ALIGN: center; MARGIN: 2px}
.hs3 {COLOR: #ffffff;
BACKGROUND-COLOR: #336633; WIDTH: 100px;
TEXT-ALIGN: center; MARGIN: 2px}
.s1 {COLOR: #000000;
BACKGROUND-COLOR: #cccccc; WIDTH: 150px;
TEXT-ALIGN: center; MARGIN: 2px}
.s2 {COLOR: #000000;
BACKGROUND-COLOR: #ccccff; WIDTH: 100px;
TEXT-ALIGN: right; MARGIN: 2px}
.s3 {COLOR: #000000;
BACKGROUND-COLOR: #ccffcc; WIDTH: 100px;
TEXT-ALIGN: right; MARGIN: 2px}
</STYLE>
</HEAD>
<BODY>
<DIV>
<SPAN class="hs1">Item</SPAN>
<SPAN class="hs2">Quantity</SPAN>
<SPAN class="hs3">Unit Price</SPAN>
</DIV>
<DIV>
<SPAN class="s1">Conical Widget</SPAN>
<SPAN class="s2">47</SPAN>
<SPAN class="s3">$34.56</SPAN>
</DIV>
<DIV>
<SPAN class="s1">Top Wobblecrank</SPAN>
<SPAN class="s2">8</SPAN>
<SPAN class="s3">$1,234.70</SPAN>
</DIV>
</BODY>
</HTML>