Can you tell me the code for dotted line on a long list for a table/column i.e.
Cell                    Column
Manicure.............$10.00 
Where do I put it in the code as well, don't know css, yes html
Thanks in advance
Can you tell me the code for dotted line on a long list for a table/column i.e.
Cell                    Column
Manicure.............$10.00 
Where do I put it in the code as well, don't know css, yes html
Thanks in advance
I don't think a dot leader (which is what the dots you're looking for are called) is possible in pure html. You're going to have to use some css.
Here's a nice article that should get you started:
http://web-graphics.com/mtarchive/001622.php
Now that you know the name of what you're looking for, you can also google a bit and look around, but as I said, I think you're probably going to have to use css.
Here is something I just played around with (tested on IE8 and FF3):
<html>
    <head>
     <style>
      .dotted {
       position:relative;
       border-bottom: 1px dotted black;
       background:white;
       height:24px;
       width:300px;
      }
      .item {
       position:absolute;
       height:26px;
       line-height:30px;
       text-align:left;
       background:white;
      }
      .value {
       position:absolute;
       right:0px;
       height:26px;
       line-height:30px;
       background:white;    
       text-align:right;
      }
     </style>
    </head>
    <body>
     <div class="dotted">
      <span class="item">Manicure</span>
      <span class="value">$10.00</span>
     </div>
     <div class="dotted">
      <span class="item">Tanning</span>
      <span class="value">$100.00</span>
     </div>
    </body>
</html>