-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
58 lines (48 loc) · 1.63 KB
/
main.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="jquery-1.6.3.js"></script>
<link rel="stylesheet" href="jquery.cleditor.css"/>
<script src="jquery.cleditor.js"></script>
<script src="jquery.cleditor.min.js"></script>
<script>
$(document).ready(function () {
$("#input").cleditor();
});
</script>
<style>
body{
background-color: #ccf2ff;
}
</style>
<title>Hello, world!</title>
</head>
<body>
<div class="container">
<div class="card col-lg-10 mx-auto">
<div class="card-body">
<form action="" method="post">
<div class="form-row">
<div class="form-group col-md-3">
<input type="noteid" class="form-control" id="inputEmail4" placeholder="Note ID">
</div>
<div class="form-group col-md-3">
<button class="btn btn-success btn-block" type="submit">Get Note</button>
</div>
</div>
<div class="form-group">
<textarea id="input" name="input" class="form-control"></textarea>
</div>
<button class="btn btn-success btn-block" type="submit">Save</button>
</form>
</div>
</div>
</div>
</body>
</html>