A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Design question

  1. #1
    Senior Member Camme's Avatar
    Join Date
    Oct 2001
    Location
    Belgium
    Posts
    567
    Hi,

    http://www.douglasarthur.com
    If you go to the HTML page how can I make that? Is it purely an image or can I work something out in HTML?
    I have three frames underneath eachother, and I want to become the same result as the site. Let's say in the middle frame a centered "site"
    Can anyone help me?

    Thanks in advance
    Greetings
    Camme

  2. #2
    Planet Claire Embassator herr_dada's Avatar
    Join Date
    May 2002
    Location
    53 miles west from Venus
    Posts
    419
    it seems like its some frames, with BG images on it. and it's all image (use select all, to see what is text, and what is not, and where it's divided)

  3. #3
    cammes if you contact me through the site i will give you the html pages....

  4. #4
    looking at the source you will see its all frames.

    but this could have been done easily with tables, and would be "simpler"

    heres an example made with tables (took about 3 minutes) :
    <html>
    <head>
    <title>Untitled Document</title>
    </head>

    <body bgcolor="#666666" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <div align="center">
    <table width="600" height="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td valign="middle"><div align="center">
    <table width="600" border="0" cellspacing="0" cellpadding="0">
    <tr bgcolor="#FFFFFF">
    <td height="100" colspan="5">
    <div align="center"> insert logo here</div></td>
    </tr>
    <tr>
    <td colspan="4" bgcolor="#FFFFFF">links here</td>
    <td width="200" bgcolor="#CCCCCC">&nbsp;</td>
    </tr>
    <tr>
    <td height="150" colspan="4" bgcolor="#999999">
    <div align="center">landscape image here </div></td>
    <td bgcolor="#00CC66">
    <div align="center">text on green bg here</div></td>
    </tr>
    <tr>
    <td width="100" height="25"><font size="1">Feat. Projects</font></td>
    <td width="100">K. Tech</td>
    <td width="100">Downloads</td>
    <td width="100">Pursuit</td>
    <td bgcolor="#CCCCCC">&nbsp;</td>
    </tr>
    <tr>
    <td height="75" colspan="5" bgcolor="#FFFFFF">empty wthite space</td>
    </tr>
    </table>
    </div></td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    __________________________________________________ ___

    once the template made, all you have to do is change content on cells/columns... and save as : newname.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center