forked from YuvBindal/AI_Hackfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.15 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title> Scan Page</title>
<meta charset = "UTF-8">
<meta name = "viewport" content= "width=device-width , initial-scale = 1.0">
<link rel = "stylesheet" href="index.css">
<script src=""script.js></script>
</head>
<body>
<header>
<nav>
<ul>
<li class="nav_elem"><a href="#">Home</a></li>
<li class="nav_elem"><a href="#">Scan</a></li>
<li class="nav_elem"><a href="#">Results</a></li>
</ul>
</nav>
</header>
<main>
<section>
<img id = "reciept" width = "400" height = "300" src ="image.jpg">
<h1>Scan a Reciept</h1>
<p>Upload a Reciept and we'll scan it for you.</p>
<form>
<input type="file" accept="image/*, .pdf">
<button type="submit">Scan</button>
</form>
</section>
</main>
<footer>
<p>© 2023 Scanner App. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>