-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.html
39 lines (39 loc) · 1.36 KB
/
browser.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Icondata Tool</title>
<meta charset="utf-8">
<meta content="NeoDC/HaydenK." name="author">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Roboto|Josefin+Sans:300,300i,400" rel="stylesheet">
<link href="page.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<header class="topBar">
<div class="topBarBottom">
<h2>Dreamcast VMU Icondata Creator</h2>
</div>
<div class="topBarBottom">
<a href="index.html">Icon Creator</a>
<span style="margin: 1em;font-size: 18px;"> </span>
<a href="Combine.html">Combine 2 seperate icons</a>
<span style="margin: 1em;font-size: 18px;"> </span>
<a href="browser.html">Image Gallery</a>
</div>
</header>
<main>
<div class="select">
<div style="flex: 1">
<h3>User Created VMU Images</h3>
<div id="previews" style=""></div>
</div>
</div>
</main>
</div>
<script src="ajax.js"></script>
<script>
window.onload = function (e) { showGallery(); };
</script>
</body>
</html>