-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 968 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Satsuki, the Killer Photo Editor</title>
<!-- I hope you got the reference :P -->
<link href="css/main.css" rel="stylesheet"/>
<link href="css/bar.css" rel="stylesheet"/>
</head>
<body>
<script defer src="js/fileload.js"></script>
<header>
<div id="title-bar"><img src="logo.png" width="60px"/></div>
<nav>
<!-- <ul id="menu-bar">
</ul> -->
</nav>
</header>
<form style="display: none">
<input type="file" accept="image/*" id="image-file" />
</form>
<article>
<nav>
<ul id="gallery-bar">
<li><a href="#" onClick="file_upload_click()">Upload Image</a></li>
<!-- <li><a href="#"></a></li>
<li><a href="#"></a></li> -->
</ul>
</nav>
<div id="gallery-breadcrumb">Gallery</div>
<div id="gallery">aa </div>
</article>
<script src="build/bundle.js"></script>
</body>
</html>