私が指しているタグでhtmlファイルを2つに分けようとしました。
例
<html> <head> <title>html title</title> </head> <body> <h1>hello title</h1> <p class="p2"> <span>here is some txt</span> </p> <p class="p2"> hello test, <a id="chp"></a>here is some txt </p> </body> </html>
セパレーターを定義した場合は<a id="chp"></a>です。2 つのファイルは次のようになります。
ファイル 1:
<html> <head> <title>html title</title> </head> <body> <h1>hello title</h1> <p class="p2"> <span>here is some txt</span> </p> <p class="p2"> hello test, </p> </body> </html>
ファイル 2:
<html> <head> <title>html title</title> </head> <body> <h1>hello title</h1> <p class="p2"> <span>here is some txt</span> </p> <p class="p2"> <a id="chp"></a>here is some txt </p> </body> </html>
これを実装する方法を誰か教えてもらえますか?
ありがとう