1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>Media</title>
- <style type="text/css" rel="stylesheet">
- body {
- font-size:12px;
- margin: 0px;
- background-color:#F0F0EE;
- }
- td.left {
- font-size:12px;
- width: 40px;
- padding: 2px;
- }
- td.right {
- font-size:12px;
- padding: 2px;
- }
- div.preview {
- border: 1px solid #AAAAAA;
- background-color: #FFFFFF;
- width: 270px;
- height: 200px;
- margin: 0px 0px 10px 0px;
- }
- div.preview div {
- margin: 5px;
- }
- </style>
- </head>
- <body>
- <div class="preview"><div id="previewDiv"></div></div>
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="left">URL:</td>
- <td class="right">
- <input type="text" id="url" name="url" value="http://" maxlength="255" style="width:210px;" />
- </td>
- </tr>
- </table>
- </body>
- </html>
|