-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (39 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Screenshot the URL</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav>
<p>Web Screenshot</p>
<button class="burger" id="burger">
☰
</button>
<ul>
<li><a href="https://screenshotapi.net/documentation" target="_blank" rel="noopener">Screenshot API Docs</a>
</li>
<li><a href="https://github.com/waynegakuo/screenshot-api" target="_blank" rel="noopener">GitHub Repo</a>
</li>
</ul>
</nav>
<div class="content">
<!-- <input type="text" placeholder="Enter your API Token Here" class="apikey" id="apiKey"
style="font-size: 1rem; opacity: 0.8">
<a class="api_refer" href="https://screenshotapi.net/home" target="_blank" rel="noopener">
Login or Register here to get an API Token</a> -->
<h3>Paste the URL of a site below & obtain its screenshot </h3>
<input type="text" placeholder="Insert URL Here" id="url" style="font-size: 1.2rem; opacity: 0.8">
<input type="button" value="Take Screenshot" id="getshot" name="getshot" onclick="getScreenShot()">
<span id="display"></span>
</div>
<script type='text/javascript' src='config.js'></script>
<script src="index.js"></script>
<footer>
<span class="footer_desc">Done with ❤ by <a class="git_link" href="https://github.com/waynegakuo"
target="_blank" rel="noopener">Wayne Gakuo</a></span>
</footer>
</body>
</html>