7_remjs.html 671 B

1234567891011121314151617181920212223
  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. <style>
  8. h1{
  9. font-size: 1rem;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h1>hello world</h1>
  15. <!-- 引入js文件 使用script 但是如果在script标签中引入js文件 那么就不可以在script标签中写js代码 -->
  16. <!-- <script src="./a.js"></script> -->
  17. <script src="./rem.js"></script>
  18. <!--如果需要在页面中写js代码 那么就要新建一个空的script标签 -->
  19. <script>
  20. console.log("hello world");
  21. </script>
  22. </body>
  23. </html>