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(Math.floor(j / 3600) + " : " + (Math.floor(j / 60) - (Math.floor(j / 3600) * 60)) + " : " + j % 60);
}
</script>
<script type="text/javascript" src="http://gdata.youtube.com/feeds/api/videos/EK_6BxDoUyg?v=2&alt=jsonc&callback=youtubeFeedCallback&prettyprint=true"></script>
</head>
<body>
<table border=1>
<tr>
<td>
<div class="block1"></div>
</td>
</tr>
</table>
</body>
</html>