BraydenMoore's picture
Update styling
2c16f09
raw
history blame
1.63 kB
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What Plant Is This?</title>
<link rel="stylesheet" href="static/styles.css">
<link rel="icon" type="image/png" href="https://images.squarespace-cdn.com/content/v1/64790f5777b5d772678cce83/6d71eaee-f825-4324-be9b-2def32469eac/Untitled+drawing+%2811%29.png?format=100w">
</head>
<body>
<div class="header">
<h1>What Plant is This?</h1>
</div>
<div class="feature-select">
<label for="feature">Have a neural net try to identify your...</label>
<select name="feature" id="feature-select">
<option value="flower">flower</option>
<option value="leaf">leaf</option>
<option value="fruit">fruit</option>
</select>
</div>
<div id="dropzone" class="dropzone">
<p>Drop an image</p>
</div>
<img id="uploaded-image" src="#" alt="Uploaded Image" />
<div id="prediction-container" class="prediction-container">
<p id="thinking-text">Suggestions will appear here</p>
<div class="image-grid">
<div id="predicted-images">
</div>
</div>
</div>
<!-- Add the GitHub link and icon below the container -->
<div class="github-container">
<a href="https://github.com/brayden1moore/What-Plant-Is-This" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" height=20px />
<p> See the code</p>
</a>
</div>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/gh/alexcorvi/heic2any/dist/heic2any.js"></script>
<script src="static/script.js"></script>
</body>
</html>