-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (56 loc) · 1.68 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
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Image - Text Generator</title>
</head>
<body>
<section class="landing-page">
<div class="box">
<h2>Image - Text Generator</h2>
<!-- drag and drop area -->
<div class="drag">
<p id="dragText">Drag & Drop to upload file <br />or</p>
<button class="btn-upload">Choose an image...</button>
<input
type="file"
name="imageFile"
hidden
id="imageFile"
accept="image/png, image/jpg, image/jpeg"
/>
</div>
<!-- end of drag and drop area -->
<div class="texts">
<div class="inline">
<label for="texts">Enter text below:</label>
<div class="repeat">
<label for="repeat">Repeat:</label>
<input
type="number"
placeholder="1"
min="1"
name=""
id="repeat"
/>
</div>
</div>
<textarea id="texts" name="texts" rows="6" cols="50"></textarea>
</div>
<button class="btn-generate">Generate</button>
<a href="#output" id="hidden-btn" hidden></a>
</div>
</section>
<!-- output area -->
<section id="output" class="output-page">
<h3>Results</h3>
<div class="canvas">
<p id="text"></p>
</div>
</section>
</body>
<script src="script.js"></script>
</html>