-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.4 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.4 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Image Viewer</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="area" >
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div >
<div class="context">
<input type="file" id="csvFile" accept=".csv" style="font-size: 18px; width: 270px; color: #fff; background-color: black;"/>
<button class="glow-on-hover" id="select-folder">Select Folder</button>
<!-- <button class="glow-on-hover" id="csvbutton">csv button</button> -->
<div style="z-index: 10;">
<a href="#" id="gooleurl" target="_blank" style="max-width: 500px; font-size: 18px; font-weight: bold; color: #fff;">Go to Google Url</a>
</div>
<div id="image-container"></div>
<!-- <div style="position: relative;"> -->
<button class="glow-on-hover" id="previous">Previous</button>
<button class="glow-on-hover" id="next">Next</button>
<!-- </div> -->
<input type="checkbox" id="outputCheckbox" style="border-color: aquamarine; width: 50px; height: 50px;"></input>
<button class="glow-on-hover" id="finishbutton">Finish</button>
</div>
<script src="script.js"></script>
</body>
</html>