Skip to content

Instantly share code, notes, and snippets.

@tkrahn
Created April 22, 2020 09:42
Show Gist options
  • Save tkrahn/a0a614c05f75432adb5d6b442b5f3819 to your computer and use it in GitHub Desktop.
Save tkrahn/a0a614c05f75432adb5d6b442b5f3819 to your computer and use it in GitHub Desktop.
Example to embedd YSEQ Cladefinder in an iframe
<html>
<head>
<style>
#cladefinder {
height: 100px;
width: 300px;
overflow-x: auto;
overflow-y: hidden;
resize: both;
position: relative;
z-index: 1;
}
iframe {
width: 100%;
height: 100%;
border: 1;
}
</style>
</head>
<body>
Here is a Cladefinder iframe for L21<br>
The iframe can be inserted into a div to make it resizeable with a CSS style header.<br>
<div id="cladefinder"><iframe src="https://cladefinder.yseq.net/interactive_tree.php?snps=L21%2B"></iframe><div><br>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment