File size: 516 Bytes
a7020f6
 
d65701b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a7020f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="style.css"> 
</head>
<body>
<main class="container">
    <label class="custom-file-upload">
        <input id="file-upload" type="file" accept="image/*" />
        <img class="upload-icon" src="https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/upload-icon.png" />
        Upload image
    </label>
    <div id="image-container"></div>
    <p id="status"></p>
</main>
<script src="./index.js" type="module"></script>
</body>
</html>