-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (63 loc) · 1.65 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>SnapTrash</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/icon.png" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="https://sdk.clarifai.com/js/clarifai-2.0.9.js"></script>
<script src="underscore.js"></script>
<script src="index.js"></script>
<script src="photo.js"></script>
<script src="scroll.js"></script>
</head>
<body>
<nav>
<ul>
<li>
<a href="#demo">Demo</a>
</li>
<li>
<a href="#tech">About</a>
</li>
<li>
<a href="#team">Team</a>
</li>
</ul>
</nav>
<header>
<h1>snaptrash</h1>
<img src="images/icon.svg">
<p>Trash with peace of mind.</p>
<a href="#demo">
<img id="downarrow" src="images/downarrow.svg">
</a>
</header>
<section id="demo">
<div id="video-container">
<video id="video"></video>
<br>
</div>
<p id="result-word"></p>
<div id="pic-container" class="output">
<img id="photo">
</div>
</section>
<div id="results">
<div id="category">
</div>
<div id="concepts-custom">
</div>
<div id="concepts-general">
</div>
</div>
<section id="about">
</section>
<section id="team">
</section>
<canvas id="canvas">
</canvas>
</body>
</html>