|
@@ -2,8 +2,19 @@
|
|
<html>
|
|
<html>
|
|
<head>
|
|
<head>
|
|
<title>Bootstrap to Min converter</title>
|
|
<title>Bootstrap to Min converter</title>
|
|
|
|
+ <link type="text/css" rel="text/css" href="entreframework.min.css"/>
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<body>
|
|
<textarea id="enteredHTML" placeholder="Enter your HTML here"></textarea>
|
|
<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>
|
|
</body>
|
|
</html>
|
|
</html>
|