index.html 392 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>HW5</title>
  8. <style>
  9. tr:nth-child(odd) {
  10. background-color: aquamarine;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <script src='main.js'></script>
  16. </body>
  17. </html>