-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en" dir="ltr" style="height: 100%">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Image Compare Tool</title>
<meta name="description" content="Tool that displays selected images for comparison.">
<meta name="author" content="AQtun">
<!-- Metadata
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="darkreader-lock">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="style.min.css">
</head>
<body style="height: 100%">
<div id="IMGs"></div>
<div id="image"></div>
<button id="fileSelect">
Choose Files
<a>Drag and drop</a>
</button>
<div id="dropIndicator" style="display: none;"></div>
</body>
<script type="text/javascript" src="script.min.js"></script>
</html>