html.html 972 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <link rel="stylesheet" href="main.css">
  8. </head>
  9. <body>
  10. <span>world</span>
  11. <ul>
  12. <li></li>
  13. </ul>
  14. <ol>
  15. <li></li>
  16. </ol>
  17. <img src="" alt="">
  18. <hr>
  19. <a href="https://www.baidu.com" target="_blank">百度</a>
  20. <DIV></DIV>
  21. <lovecoding></lovecoding>
  22. <div id="box" style="font-size: 40px;">hello</div>
  23. <table>
  24. <thead>
  25. <tr>
  26. <th>1</th>
  27. <td>a</td>
  28. </tr>
  29. </thead>
  30. <tbody>
  31. <tr>
  32. <td>2</td>
  33. <th>b</th>
  34. </tr>
  35. </tbody>
  36. </table>
  37. <script>
  38. var a = 10;
  39. // var A = 10;
  40. var oBox = document.getElementById("box");
  41. oBox.style.color = "green";
  42. </script>
  43. </body>
  44. </html>