I want to load a static text file from an HTML document without using Javascript or any server side language.
I’ve tried using object tag as follows:
<object id="information" name="information" data="http://www.example.com/data.txt"></object>
But it didn’t work. Is it possible to do this? If so, which tag should I use?
You should use an
<iframe src="..." />.