12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <link rel="stylesheet" href="main.css">
- </head>
- <body>
- <span>world</span>
- <ul>
- <li></li>
- </ul>
- <ol>
- <li></li>
- </ol>
- <img src="" alt="">
- <hr>
- <a href="https://www.baidu.com" target="_blank">百度</a>
- <DIV></DIV>
- <lovecoding></lovecoding>
- <div id="box" style="font-size: 40px;">hello</div>
- <table>
- <thead>
- <tr>
- <th>1</th>
- <td>a</td>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>2</td>
- <th>b</th>
- </tr>
- </tbody>
- </table>
- <script>
- var a = 10;
- // var A = 10;
- var oBox = document.getElementById("box");
- oBox.style.color = "green";
- </script>
- </body>
- </html>
|