media.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <title>Media</title>
  6. <style type="text/css" rel="stylesheet">
  7. body {
  8. font-size:12px;
  9. margin: 0px;
  10. background-color:#F0F0EE;
  11. }
  12. td.left {
  13. font-size:12px;
  14. width: 40px;
  15. padding: 2px;
  16. }
  17. td.right {
  18. font-size:12px;
  19. padding: 2px;
  20. }
  21. div.preview {
  22. border: 1px solid #AAAAAA;
  23. background-color: #FFFFFF;
  24. width: 270px;
  25. height: 200px;
  26. margin: 0px 0px 10px 0px;
  27. }
  28. div.preview div {
  29. margin: 5px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="preview"><div id="previewDiv"></div></div>
  35. <table border="0" cellpadding="0" cellspacing="0">
  36. <tr>
  37. <td class="left">URL:</td>
  38. <td class="right">
  39. <input type="text" id="url" name="url" value="http://" maxlength="255" style="width:210px;" />
  40. </td>
  41. </tr>
  42. </table>
  43. </body>
  44. </html>