37 lines
812 B
HTML
37 lines
812 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="XML Cleaner">
|
|
<title>XML Cleaner</title>
|
|
<style>
|
|
body,
|
|
html {
|
|
margin: auto;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
background-color: black;
|
|
display: flex;
|
|
max-width: 800px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<input type="file" id="in" multiple accept="text/xml"><button id="run">RUN</button>
|
|
<script type="module" src="out/app.js"></script>
|
|
</body>
|
|
|
|
</html> |