-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 2.24 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="dist/styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css">
<script src="dist/core/abstracts/DrawableFactory.js" defer></script>
<script src="dist/core/abstracts/Display.js" defer></script>
<script src="dist/core/Shapes/DrawableShape.js" defer></script>
<script src="dist/core/Shapes/EditableShape.js" defer></script>
<script src="dist/core/abstracts/CanvasElement.js" defer></script>
<script src="dist/components/ImageShape.js" defer></script>
<script src="dist/components/CanvasComponet.js" defer></script>
<script src="dist/index.js" defer></script>
<title>Visual Image Merger</title>
</head>
<body>
<header class="content">
<!-- Your logo here -->
<img width="200" src="https://drive.google.com/u/2/uc?id=1skGrOcBDINY6t0k4i3-olbsh6Tsu9uHx&export=download" alt="Logo">
</header>
<main class="content">
<section class="align-center content">
<h1>Visual Image Merger</h1>
<p class="description">
Select images from local, URL, and XPath
</p>
</section>
<section class="flex-row content select-image-component">
<div class="flex-row">
<div>
<input id="locaImage" name="locaImage" type="file" accept="image/*" text="select image" class="btn btn-primary" multiple>
</input>
</div>
<div>
or
</div>
<div id="options-component">
<input type="url" name="url" id="url" placeholder="Enter URL">
<input type="text" name="xpath" id="xpath" placeholder="Enter XPath">
</div>
</div>
<div>
<button id="add" class="btn btn-secondary">Add</button>
</div>
</section>
<canvas id="canvas"></canvas>
</main>
<footer class="content">
<!-- Your footer content here -->
</footer>
</body>
</html>