12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <!--
- 内联框架:用于向当前页面中引入一个其他页面
- src 指定要引入的网页的路径
- frameborder 指定内联框架的边框
- -->
- <iframe src="https://im.qq.com/" width="500" height="400" frameborder="0"></iframe>
- </body>
- </html>
|