D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
aaizemberg
Full window
Github gist
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>
https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.3/d3.min.js