-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathresult.html
39 lines (38 loc) · 1.05 KB
/
result.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My food app</title>
<link rel="stylesheet" type="text/css" href="{{url_for('static',filename='styles/app.css')}}">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body class="text-center">
<nav>
<ul>
<li>Food Finder</li>
<li><a href="https://github.com/Prakhar998/model_deployment">Github</a></li>
</ul>
</nav>
<div class="body">
<img src="{{url_for('static',filename='images/pytorch-logo.png')}}" alt="pyy">
<h2>Result</h2>
<p2 style="
margin-top: 60px;
font-size: 1.8em;
color: fuchsia;">Your Food is: {{food}}</p2>
</div>
<div>
<p style="margin-top:180px;
font-size: 1.2em;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: darkmagenta
">
@Made By Prakhar (accuracy=82.3% && Densenet201)
</p>
</div>
</body>
</html>