-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 760 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 760 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Virtual Maths Teacher</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>I'm Your Virtual Maths Teacher</h1>
<div class="upload-image">
<div class="inner-upload-image">
<input type="file" hidden>
<img src="" id="image">
<img src="plus.svg" alt="" id="icon">
<span>Upload Image</span>
</div>
<button>
Answer
</button>
</div>
<img src="loading.gif" alt="" id="loading" width="80px">
<div class="output">
<pre id="text"></pre>
</div>
<script src="script.js"></script>
</body>
</html>