Skip to content

Instantly share code, notes, and snippets.

@aaizemberg
Created January 19, 2017 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaizemberg/73ba77546add74f267ba00c661c38ae6 to your computer and use it in GitHub Desktop.
Save aaizemberg/73ba77546add74f267ba00c661c38ae6 to your computer and use it in GitHub Desktop.
Malabareando en Boston
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Malabareando en Boston</title>
</head>
<body>
<!-- <iframe width="560" height="315" src="https://www.youtube.com/embed/6wV1OrjwNZ8" frameborder="0" allowfullscreen></iframe> -->
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.3/d3.min.js"></script>
<script>
d3.select("body")
.append("iframe")
.attr("width","560")
.attr("height","315")
.attr("src","https://www.youtube.com/embed/6wV1OrjwNZ8")
.attr("frameborder","0")
.attr("allowfullscreen","true");
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment