-
Notifications
You must be signed in to change notification settings - Fork 3
/
duplicate-image-search-example.html
51 lines (34 loc) · 1.48 KB
/
duplicate-image-search-example.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
<!-- Copyright by Vitali Fedulov (www.similar.pictures) 2015-2018 -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image clustering example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
</head>
<body>
<!-- Header -->
<div class="header">
<a href = "index.html" class="logo"><h1>Similar Pictures Search</h1></a>
<h4 class="logo-statement">Find near duplicates on your computer</h4>
</div>
<div class="nav">
<!-- Set manually class "active" for corresponding nav-tab. -->
<div class="nav-tab"><a href="index.html">Home</a></div>
<div class="nav-tab active"><a href="duplicate-image-search-example.html">Screenshot</a></div>
<div class="nav-tab"><a href="research.html">Research</a></div>
<div class="nav-tab"><a href="tools.html">Tools</a></div>
<div class="nav-tab"><a href="about.html">About</a></div>
<div class="line"></div> <!-- Gray line placeholder. Should stay here. -->
</div>
<!-- Contents -->
<p>Screenshot of image clustering (each to each in a folder):</p><br>
<div class="screenshot">
<img src="images/similar.pictures.png">
</div>
<div class = "footer">Copyright © 2018 Vitali Fedulov. All rights reserved.</div>
</body>
</html>