Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

'type=text/html'

  • 2 replies
  • 2 have this problem
  • 11 views
  • Last reply by green109

more options

Hi,

My blog site is not allowed 'iFrame' tag. I use 'type=text/html'. It's fine on IE11/Chrome but not Firefox. refer link - http://blog.koreadaily.com/park109/836440 What's problem with Firefox?

The tag I used is that -

 <embed width="790" height="8500" src="http://greenpark.magix.net/lra/index.htm" type="text/html" 

style="margin-top: 5px; margin-left: -25px;" scrolling="no" allownetworking="all">


Rgds green109

Hi, My blog site is not allowed 'iFrame' tag. I use 'type=text/html'. It's fine on IE11/Chrome but not Firefox. refer link - http://blog.koreadaily.com/park109/836440 What's problem with Firefox? The tag I used is that - <embed width="790" height="8500" src="http://greenpark.magix.net/lra/index.htm" type="text/html" style="margin-top: 5px; margin-left: -25px;" scrolling="no" allownetworking="all"> Rgds green109

Chosen solution

You are correct that <embed type="text/html"> does not work. Can you use <object> on that site?

Similar thread: "A plugin is needed to display this content"

Read this answer in context 👍 1

All Replies (2)

more options

Chosen Solution

You are correct that <embed type="text/html"> does not work. Can you use <object> on that site?

Similar thread: "A plugin is needed to display this content"

more options

Hello, jsche2000

Thank you very much for your answer. I tried <object> tag like this.


<object width="790" height="8500" data="http://greenpark.magix.net/lra/index.htm" type="text/html" style="margin-top: 5px; margin-left: -25px;" scrolling="no" allownetworking="all"> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <embed width="790" height="8500" src="http://greenpark.magix.net/lra/index.htm" type="text/html" style="margin-top: 5px; margin-left: -25px;" scrolling="no" allownetworking="all"> </object>

And all are fine, on IE11/Chrome even Firefox!