Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Thysbelon committed Aug 18, 2024
1 parent 49c8aa3 commit 2fe6be9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WebpSvg2common
# [WebpSvg2common](https://thysbelon.github.io/WebpSvg2common/)

A webapp to make converting webp and svg files to png and gif easy.
A webapp to make converting WEBP and SVG files to PNG and GIF easy.

## Credits

Expand Down
14 changes: 13 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,23 @@
<script src=webpinfo.js></script>
<script src=anim_dump.js></script>
<script src=index.js></script>
<style>
body{
max-width:43rem;
margin-left:auto;
margin-right:auto;
}
</style>
</head>
<body>
<h1>WebpSvg2common</h1>
<label for="img-select-file">Upload images:</label>
<p>This webapp takes WEBP and SVG files as input and converts them into PNG files; animated WEBP will be converted into animated GIF.
<p>If you notice any problems with conversion, please <a href=https://github.com/Thysbelon/WebpSvg2common/issues>open a new issue</a> on WebpSvg2common's GitHub repository, and attach a copy of the input (WEBP or SVG) file that did not convert successfully.
<hr>
<p><label for="img-select-file">Upload images:</label>
<input type=file id="img-select-file" accept="image/webp,image/svg+xml" multiple />
<hr>
<p><a href=https://github.com/Thysbelon/WebpSvg2common>GitHub repository</a>
<script>
function wrapper() {
var fileInput=document.getElementById("img-select-file")
Expand Down

0 comments on commit 2fe6be9

Please sign in to comment.