开发者

Combine multiple HTML CSS for a building a new page

开发者 https://www.devze.com 2023-02-25 11:19 出处:网络
I am looking for information about how to make a HTML page out of two s开发者_如何学JAVAeparate smaller HTML patterns per say. Both these patterns have thier own HTML, CSS and Java script. I need to c

I am looking for information about how to make a HTML page out of two s开发者_如何学JAVAeparate smaller HTML patterns per say. Both these patterns have thier own HTML, CSS and Java script. I need to combine them and render them as a single HTML page. Any pointers to any available utility to do so or any pointers to build such a tool

Thanks VB


If you want to just get the two pages to display at the same time, put each page into an <iframe> in a "wrapper" HTML page. This helps prevent conflicts between the two pages. Something like this:

<html>
    <head><!-- snip --></head>
    <body>
        <iframe src="page1.html"></iframe>
        <iframe src="page2.html"></iframe>
    </body>
</html>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号