-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtumor.html
43 lines (34 loc) · 1.2 KB
/
tumor.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Health Buddy</title>
<link rel="stylesheet" href="tumor_style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<style>
body{
background-color: #0f1729;
}
</style>
<body>
<div class="container">
<h1 class="heading">Brain Tumor Detection</h1>
<div class="box">
<div class="label" id="label-container"></div>
<input class="file-input" type="file" id="file" accept="image/*" hidden>
<div id="label-container"></div>
<div class="img-area" data-img="">
<i class='bx bxs-cloud-upload icon'></i>
<h3>Upload Image</h3>
<p>Image size must be less than <span>2MB</span></p>
</div>
<button class="select-image">Select Image</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@teachablemachine/image@latest/dist/teachablemachine-image.min.js"></script>
<script src="tumor_script.js"></script>
</body>
</html>