Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<body>
<script>
  "use strict";
  let src = document.location.href.replace("https://", "http://");
  let frame = document.createElement("iframe");
  frame.setAttribute("id", "frame");
  frame.setAttribute("src", src);
  document.body.appendChild(frame);
</script>
</body>
</html>