mirror of
https://codeberg.org/vlw/code-export-syntax.git
synced 2025-11-05 04:22:43 +01:00
21 lines
No EOL
737 B
HTML
21 lines
No EOL
737 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Export to HTML</title>
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.conditional.min.css">
|
|
<link rel="stylesheet" href="/assets/css/style.css">
|
|
<link rel="stylesheet" href="/assets/css/pages/export/html.css">
|
|
</head>
|
|
<body data-theme="dark">
|
|
<main class="pico">
|
|
<textarea id="html" placeholder="Please wait..." name="html" readonly></textarea>
|
|
<button id="copy"><p>Copy to Clipboard</p></button>
|
|
<button id="close" class="outline secondary"><p>Close</p></button>
|
|
</main>
|
|
|
|
<script src="/assets/js/pages/export/html.js"></script>
|
|
</body>
|
|
</html> |