Update bootstrapconverter.html

This commit is contained in:
Owen Versteeg 2013-12-08 21:58:33 -05:00
parent 7a6dc12fab
commit 880f3151c1

View file

@ -2,18 +2,18 @@
<html>
<head>
<title>Bootstrap to Min converter</title>
<link type="text/css" rel="text/css" href="entreframework.min.css"/>
<link type="text/css" rel="text/css" href="entireframework.min.css"/>
</head>
<body>
<textarea id="enteredHTML" placeholder="Enter your HTML here"></textarea>
<a onclick="convertHTML(this.value)"><button class="smooth btn-a">Convert HTML</button></a>
<iframe srcdoc="">
<iframe id="convertedHTMLIframe">
Your browser does not support iframes.
</iframe>
<script type="text/javascript">
function convertHTML(htmlToConvert) {
enteredHTML.srcdoc = htmlToConvert;
convertedHTMLIframe.src = htmlToConvert;
}
</script>
</body>