I am using GitHub site, and I need to embed video or map or IFrame to be shown in GitHub readme.md file, Is it possible?
I have tried to embed IFrame using the below code but it's not working the MarkDown GitHub readme.md file!
<iframe  frameborder="0" 
        style=" width: 100%; height: 110%;" src="https://app">
      </iframe>
I also have tried the below <Object> tag to embed a video
<object width="625" height="800">
  <embed src="http://url"
         type="application/x-shockwave-flash"
         wmode="transparent" width="625" height="800" />
</object>
but still I can't embed IFrame in GitHub?

Can you help me to know How can I embed IFrame and Video in GitHub readme.md file?