CoolFace
Apppublic

willingram/experiments

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
index.html19 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3 4<head>5    <meta charset="UTF-8" />6    <link rel="stylesheet" href="style.css" />7 8    <meta name="viewport" content="width=device-width, initial-scale=1.0" />9    <title>Transformers.js</title>10</head>11 12<body>13    <input type="text" id="myTextInput" value=""><br><br>14    <button id="myBtn">Go</button><br><br>15    <span id="myOutput">[blank]</span>16    <script src="index.js" type="module"></script>17</body>18 19</html>