Update bootstrapconverter.html
This commit is contained in:
parent
0cb07996e0
commit
7a6dc12fab
1 changed files with 11 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue