This repository was archived by the owner on Aug 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (38 loc) · 1.22 KB
/
Copy pathindex.html
File metadata and controls
47 lines (38 loc) · 1.22 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MDE - Markdown Editor</title>
<link rel="stylesheet" href="./styles/css/default.css" />
<link rel="stylesheet" href="./styles/css/searchbox.css" />
<link rel="stylesheet" href="./styles/css/font-awesome.min.css" />
</head>
<body>
<div id="searchbox">
<div class="searchbox-titlebar-btn">
<i class="fa fa-close"></i>
</div>
<div class="searchbox-container">
<div class="searchbox-row">
<div>
<input type="text" placeholder="Search" />
<button id="searchbox-next-btn">
<i class="fa fa-arrow-down"></i>
</button>
<button id="searchbox-previous-btn">
<i class="fa fa-arrow-up"></i>
</button>
</div>
<input id="replace-input" type="text" placeholder="Replace" />
</div>
<div class="searchbox-row">
<button id="searchbox-replace-btn" class="searchbox-btn">Replace</button>
<button id="searchbox-replaceall-btn" class="searchbox-btn">Replace All</button>
</div>
</div>
</div>
<script>
require("./build/index.js")
</script>
</body>
</html>