Tweet

by 25058214

HTML

<div id="tweet" tweetID="1430571898371551232"></div>

CSS

#tweet {
        width: 400px !important;
      }
     
      #tweet iframe {
        border: none !important;
        box-shadow: none !important;
      }

JavaScript

window.onload = (function(){
     
        var tweet = document.getElementById("tweet");
        var id = tweet.getAttribute("tweetID");
     
        twttr.widgets.createTweet(
          id, tweet, 
          {
            conversation : 'none',    // or all
            cards        : 'hidden',  // or visible 
            linkColor    : '#cc0000', // default is blue
            theme        : 'light'    // or dark
          })
 
      });