-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 865 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible">
<title>md-to-cwm</title>
<link href="./dist/css/app.css" rel="stylesheet">
<link href="//unpkg.com/[email protected]/dist/css/ionicons.min.css" rel="stylesheet">
</head>
<body>
<div class="main">
<div id="editor" class="content"></div>
<div id="view" class="content custom-scrollbar">
<div id="button" class="none">
<span id="copy" class="tooltip" data-tooltip="Copy!!"><i class="icon ion-md-copy"></i></span>
<span id="switch"><i class="icon ion-md-switch"></i></span>
</div>
<div id="view-result" class="monaco-editor mac vs-dark"></div>
</div>
</div>
<script src="./dist/app.js" defer></script>
</body>
</html>