CoolFace
Apppublic

Supabase/image-search

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes
index.html21 linesDownload Raw Back to static
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Image Search</title>7    <link rel="stylesheet" href="style.css" />8    <script type="module" src="script.js"></script>9</head>10<body>11    <main>12        <h1>Image Search</h1>13        <form class="search-form">14            <label>Name </label>15            <input id="query" type="text" name="query">16            <button class="submit-button">Submit</button>17        </form>18        <div class="result"></div>19    </main>20</body>21</html>