HTML images

Apokarteron

banned
How do I create html images with Dreamweaver? I just want boxes to put text in - or images but not like the ones where you can 'save to disk'...
 
Are you just looking for coloured boxes to put text in? If you are then use tables. You can set the background colours for each cell. For example:

Code:
 <table width="501" height="363" border="1" cellpadding="0" cellspacing="0" bordercolor="#000000">
  <tr>
    <td width="165" bgcolor="#FF6600"><div align="center">This is some text! </div></td>
    <td width="165" bgcolor="#FFCC66"><div align="center">This is some text! </div></td>
    <td width="165" bgcolor="#6699CC"><div align="center">This is some text! </div></td>
  </tr>
  <tr>
    <td bgcolor="#669966"><div align="center">This is some text! </div></td>
    <td bgcolor="#999966"><div align="center">This is some text! </div></td>
    <td bgcolor="#CC33CC"><div align="center">This is some text! </div></td>
  </tr>
  <tr>
    <td bgcolor="#009933"><div align="center">This is some text! </div></td>
    <td bgcolor="#FFCC00"><div align="center">This is some text! </div></td>
    <td bgcolor="#666600"><div align="center">This is some text! </div></td>
  </tr>
</table>
 
Back
Top