-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsnapper-image.html
More file actions
38 lines (29 loc) · 856 Bytes
/
snapper-image.html
File metadata and controls
38 lines (29 loc) · 856 Bytes
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>
<head>
<title>Snapper</title>
<link href="snapper-image.css" rel="stylesheet" type="text/css">
<link rel="icon" href="images/icon_old.png">
</head>
<body>
<div class="content_container">
<!-- Header -->
<div class="header_container">
<div class="header_bar">
<span id="header_text">Your Snapper Screenshot</span>
</div>
<!-- Header divider -->
<div class="header_divider"></div>
<!-- Screenshot utilities -->
<div class="utils_container">
<a class="utils_button" id="download_png" href="" download="">
.png<span class="button_icon"> ⭳</span>
</a>
</div>
</div>
<!-- Image Capture -->
<img src="" alt="Your Snapper Image" id="capture_image">
</div>
<script src="snapper-image.js"></script>
</body>
</html>