为每个博客帖子创建不同的html文件

时间:2014-09-23 06:59:56

标签: html5

我很想知道有没有办法将单个html文件拆分成几个。我有单个索引文件,其中包含许多博客文章。我想为每个博客帖子创建一个不同的html文件并导入它们或将它们链接到主html文件。

实施例

   <html>
       <head>
       </head>
       <body>
           <header>
           </header>
           <article>
                <div id="blog-post-1">
                      <!-- Content of blog post -->
                </div>
                <div id="blog-post-2">
                      <!-- Content of blog post -->
                </div>
                <div id="blog-post-3">
                      <!-- Content of blog post -->
                </div>
                <div id="blog-post-4">
                      <!-- Content of blog post -->
                </div>
                <div id="blog-post-5">
                      <!-- Content of blog post -->
                </div>
           </article>

我只是想为每篇博文创建一个不同的文件;对于上述情况5个不同的html文件。然后,在主html主体中链接或导入它们。有可能吗?

1 个答案:

答案 0 :(得分:0)

要显示外部网页,您可以使用Iframe 你这样使用它:

<iframe src="http://www.website.com" width="100%" height="100%"></iframe>
祝你好运!