I want to link HTML pages which I can show it directly on my webpage rather than creating a link.
Please suggest me how could I arrange it.
I want to link HTML pages which I can show it directly on my webpage rather than creating a link.
Please suggest me how could I arrange it.
If I understand your question correctly it seems that you should be able to use Iframes to solve that.
<iframe src="https://www.exampleURL.com"></iframe>
More info can be found https://www.w3schools.com/tags/tag_iframe.asp
You can use iframe tag in order to embed other websites into your own site.
However, please consider that this method has many vulnerability and is risk to use.
See this additional information.