-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
36 lines (32 loc) · 1.08 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
<html>
<head>
<title>CleanJS.io</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi"
crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<h1>CleanJS.io</h1>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<button class="btn btn-primary btn-block" id="convert">Clean</button>
</div>
</div>
<div class="row" id="inputrow" style="padding-top:20px">
<div class="col-sm-6">
<textarea class="form-control" name="codeIn" id="codeIn" rows="40"></textarea>
</div>
<div class="col-sm-6">
<textarea class="form-control" name="codeOut" id="codeOut" rows="40" readonly></textarea>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>