-
Notifications
You must be signed in to change notification settings - Fork 3
/
template.html
31 lines (31 loc) · 1.36 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<title>MdReverse</title>
</head>
<body>
<a href="https://github.com/siaikin/mdReverse">
<img width="149" height="149" style="position: absolute;top: 0;right: 0;z-index: 1;" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149" alt="Fork me on GitHub" data-recalc-dims="1">
</a>
<!--<div id="toolbar-container" class="columns col-gapless">-->
<!--<div class="column col-2"></div>-->
<!--<div class="column col-10"></div>-->
<!--</div>-->
<div id="main-container" class="columns col-gapless">
<div class="column col-6 p-2">
<div class="form-group">
<label class="form-label" for="html-area">HTML Text</label>
<textarea class="form-input" id="html-area" placeholder="Input HTML Text" spellcheck="false"></textarea>
</div>
</div>
<div class="column col-6 p-2">
<div class="form-group">
<label class="form-label" for="markdown-area">Markdown Text</label>
<textarea class="form-input" id="markdown-area" placeholder="Output Markdown Text" spellcheck="false" readonly></textarea>
</div>
</div>
</div>
</body>
</html>