06.内联框架.html 542 B

12345678910111213141516171819
  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>Document</title>
  8. </head>
  9. <body>
  10. <!--
  11. 内联框架:用于向当前页面中引入一个其他页面
  12. src 指定要引入的网页的路径
  13. frameborder 指定内联框架的边框
  14. -->
  15. <iframe src="https://im.qq.com/" width="500" height="400" frameborder="0"></iframe>
  16. </body>
  17. </html>