- <html>
- <head>
- <title>Demo1.html</title>
-
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="this is my page">
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
-
- <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
- </head>
- <frameset cols="20%,*">
- <frame name="left" />
- <frame name="right" />
- </frameset>
- <body>
- This is my HTML page. <br>
- </body>
- </html>
复制代码 这段代码将整个页面分成左右两块,但是body标签里的代码就失效了,如何让body里的信息显示出来? |
|