私は2つのhtmlページを持っています。そして1つのccsファイル。ある html の div タグ内のすべてのコンテンツを他の html にコピーする方法があることを知る必要があります。例えば
CSS ファイル:
#block {
/* some code that doesn't matter */
}
メインのhtml:
<div id="block">
Some text inside div called "block" that is need to be showed in any others html pages with the
same div "block"
</div>
サブ HTML ページ:
<div id="block">
Code that's need to be placed once to read all content from div "block"
</div>