JSFiddle - React, Tailwind, and code Playground

by bohdantheone

HTML

<html>
 <head>
  <title>Тег DIV</title>
     <script type="text/javascript">
 function youtubeFeedCallback(json){
         var j=json["data"]["duration"];
         document.write("Продолжительность: " + j + " секунд(ы)");
         
  alert("Продолжительность: " + j + " секунд(ы)");
         }
        
</script>
     <script type="text/javascript" src="http://gdata.youtube.com/feeds/api/videos/EK_6BxDoUyg?v=2&amp;alt=jsonc&amp;callback=youtubeFeedCallback&amp;prettyprint=true"></script>
  <style type="text/css">
   .block1 { 
      width:400px;
      height:300px;
      font-size:200px;
      text-align:center;
      padding:100px 0 0 0;
 background: transparent url('http://fc-chelsea.net.ru/_fr/2/8941840.gif') 50% 50% no-repeat;
   }
  </style> 
 </head>
 <body>
<table border=1>
<tr>
<td>
  <div class="block1">1</div>
</td>
</tr>
</table>
 </body>
</html>