This repository has been archived by the owner on May 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>HTML Code Cleaner</title>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="stylesheet">
<link href="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.9/summernote.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>HTML Code Cleaner</h1>
<section id="view">
<div class="containerNote">
<div id="summernoteInput"></div>
</div>
</section>
<section id="controls">
<div class="col50 options">
<form>
<input id="cleanGlobalStyle" type="checkbox"> Remover estilos importados [< style> *** < /style>]<br>
<input id="cleanStyle" type="checkbox"> Remover estilos en línea [style=""]<br>
<input id="cleanID" type="checkbox"> Remover id [id=""]<br>
<input id="cleanClass" type="checkbox"> Remover class [class=""] <br>
<input id="cleanLang" type="checkbox"> Remover lang [lang=""] <br>
</form>
</div><!--
--><div class="col50 buttons">
<input id="copyValue" type="text" name="copy" value="">
<button id="clean">Remover</button>
<button id="copyCode">Copiar código</button>
</div>
</section>
<footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.9/summernote.js"></script>
<script src="scripts.js"></script>
</footer>
</body>
</html>