-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Hello World</title>
</head>
<body>
<div class="upload-image">
<h4>Upload your image</h6>
<p>File should be Jpeg, Png...</p>
<div class="dropbox">
<img src="img/image.svg" alt="">
<p>Drag & Drop your image here</p>
</div>
<p>or</p>
<button class="choose-file" type="submit">Choose a file</button>
</div>
<div class="uploading">
<h4>Uploading...</h4>
<input type="range" name="" id="" disabled>
</div>
<div class="success">
<img src="ig/checkmark.svg" alt="Checkmark">
<h4>Uploaded Successfully!</h5>
<img src="" alt="" id="uploaded-image">
<form action="">
<input type="text" name="image-link" id="image-link" disabled>
<button class="copy">Copy Link</button>
</form>
</div>
</body>
</html>