ieupdate.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <html>
  2. <head>
  3. <title>请升级您的浏览器</title>
  4. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  5. <!-- IE8/9及以后的版本用最新的引擎渲染网页 -->
  6. <meta content="IE=edge" http-equiv="X-UA-Compatible">
  7. <style>
  8. body{
  9. font-size: 13px;
  10. font-family: Georgia,Verdana,sans-serif;
  11. color: #333;
  12. padding: 0;
  13. margin: 0;
  14. }
  15. .wrap{
  16. min-width: 1024px;
  17. margin: 47px 20px;
  18. background-color: #fff4f4;
  19. border: solid 1px #777;
  20. box-shadow: 0 0 8px #888;
  21. position: relative;
  22. }
  23. .wrap .title{
  24. text-align: center;
  25. margin: 13px 25px;
  26. font-weight: bold;
  27. font-size: 19px;
  28. }
  29. .wrap .list{
  30. width: 100%;
  31. margin-bottom: 10px;
  32. }
  33. .wrap .list .item{
  34. text-align: center;
  35. padding: 10px;
  36. width: 25%;
  37. }
  38. .wrap .list .item:hover .link{
  39. border: dashed 1px rgb(170, 170, 170);
  40. padding-top: 109px;
  41. padding-bottom: 3px;
  42. }
  43. .wrap .list .item .link{
  44. padding-top: 110px;
  45. padding-bottom: 4px;
  46. background-position: center top;
  47. background-repeat: no-repeat;
  48. display: block;
  49. text-decoration: none;
  50. }
  51. .wrap .list .item .bf{
  52. background-image: url('ff.png');
  53. }
  54. .wrap .list .item .bo{
  55. background-image: url('360.png');
  56. }
  57. .wrap .list .item .bc{
  58. background-image: url('ch.png');
  59. }
  60. .wrap .list .item .bi{
  61. background-image: url('ie.png');
  62. }
  63. .wrap .list .item .link .name{
  64. color: #e25600;
  65. text-align: center;
  66. text-decoration: underline;
  67. font-size: 19px;
  68. font-family: 'Open Sans',sans-serif;
  69. font-weight: 300;
  70. }
  71. .wrap .list .item .link .vendor{
  72. font-size: 10px;
  73. color: #aaa;
  74. text-align: center;
  75. display: block;
  76. margin-top: 5px;
  77. text-decoration: none;
  78. }
  79. .wrap .tag {
  80. text-align: center;
  81. margin: 13px 25px;
  82. font-size: 19px;
  83. font-family: 'Open Sans',sans-serif;
  84. font-weight: 300;
  85. }
  86. </style>
  87. </head>
  88. <body>
  89. <div class="wrap">
  90. <p class="title">您的浏览器需要更新,请下载一款免费而优秀的最新版浏览器。</p>
  91. <!-- 用table,为了兼容 ie5 -->
  92. <table class="list">
  93. <tr>
  94. <td class="item">
  95. <a class="link bf" href="http://www.mozilla.com/firefox/" target="_blank">
  96. <span class="name">Firefox</span>
  97. <span class="vendor">Mozilla Foundation</span>
  98. </a>
  99. </td>
  100. <td class="item">
  101. <a class="link bo" href="https://browser.360.cn/ee/" target="_blank">
  102. <span class="name">360</span>
  103. <span class="vendor">360浏览器</span>
  104. </a>
  105. </td>
  106. <td class="item">
  107. <a class="link bc" href="http://www.google.cn/chrome/browser/desktop/index.html" target="_blank">
  108. <span class="name">Chrome</span>
  109. <span class="vendor">Google</span>
  110. </a>
  111. </td>
  112. <td class="item">
  113. <a class="link bi" href="https://support.microsoft.com/zh-cn/help/17621/internet-explorer-downloads" target="_blank">
  114. <span class="name">Internet Explorer</span>
  115. <span class="vendor">Microsoft</span>
  116. </a>
  117. </td>
  118. </tr>
  119. </table>
  120. <p class="tag">带来更多安全、极速和乐趣。</p>
  121. </div>
  122. </body>
  123. </html>