Update bootstrapconverter.html

This commit is contained in:
Owen Versteeg 2013-12-08 21:43:03 -05:00
parent 0cb07996e0
commit 7a6dc12fab

View file

@ -2,8 +2,19 @@
<html>
<head>
<title>Bootstrap to Min converter</title>
<link type="text/css" rel="text/css" href="entreframework.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="">
Your browser does not support iframes.
</iframe>
<script type="text/javascript">
function convertHTML(htmlToConvert) {
enteredHTML.srcdoc = htmlToConvert;
}
</script>
</body>
</html>