-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (23 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Convert DOCX to HTML</title>
</head>
<body>
<div id="app" class="container mx-auto max-w-[1000px] min-h-screen py-8 px-2 flex flex-col">
<h1 class="text-3xl font-bold my-4 text-center">Convert DOCX to HTML</h1>
<div class="my-4 flex flex-wrap">
<input type="file" id="file" />
<button id="copy" class="bg-blue-100 ml-auto px-6 py-1 rounded" title="Copy to clipboard">Copy</button>
</div>
<pre class="grow rounded-xl"><code id="output" class="language-html" style="white-space: pre-wrap"></code></pre>
<footer class="py-2 text-center">
© 2022 PopArtDesign:
<a href="https://popartdesign.ru" target="_blank" class="text-blue-500 underline">popartdesign.ru</a>
</footer>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>