about.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>About</title>
  6. <style type="text/css" rel="stylesheet">
  7. body {
  8. font-size:12px;
  9. line-height: 1.5;
  10. font-family: "sans serif",tahoma,verdana,helvetica;
  11. margin:0;
  12. background-color:#F0F0EE;
  13. overflow:hidden;
  14. }
  15. .main {
  16. margin: 10px;
  17. }
  18. .title {
  19. font-size: 18px;
  20. font-weight: bold;
  21. color: #FB7155;
  22. margin-bottom: 10px;
  23. }
  24. .table {
  25. list-style-image:none;
  26. list-style-position:outside;
  27. list-style-type:none;
  28. margin:0;
  29. padding:0;
  30. display:block;
  31. }
  32. .table li {
  33. padding:0;
  34. margin:0;
  35. display:list-item;
  36. }
  37. .table li label {
  38. font-weight:bold;
  39. }
  40. .table li input {
  41. vertical-align:middle;
  42. }
  43. .table li img {
  44. vertical-align:middle;
  45. }
  46. </style>
  47. <script type="text/javascript">
  48. var KE = parent.KE;
  49. location.href.match(/\?id=([\w-]+)/i);
  50. var id = RegExp.$1;
  51. KE.event.ready(function() {
  52. KE.util.hideLoadingPage(id);
  53. }, window, document);
  54. </script>
  55. </head>
  56. <body>
  57. <div class="main">
  58. <ul class="table">
  59. <li>
  60. KindEditor <script type="text/javascript">document.write(parent.KE.version);</script> - HTML可视化编辑器
  61. </li>
  62. </ul>
  63. </div>
  64. </body>
  65. </html>