-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>InstaGround</title>
<link rel="icon" type="image/png" href="http://www.favicon.cc/logo3d/422699.png" />
<link rel="stylesheet" type="text/css" href="instaground.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<input class="tab" type="text" id="search-field" placeholder="Search here.">
<button class="tab" id="history"> history </button>
<button id="clear-history" type="button" name="clear-history">clear history</button>
<a id="download" type="button" download="your-instaground.jpg">download</a>
<div class="tabcontents">
<div class="tab-content" style="display: block;">
</div>
<div class="tab-content" id="history-content" style="display: none;">
</div>
<div class="error-message tab-content">
<p>Sorry, it seems Instagram doesn't have an image for that search term.</p>
<p>Have you tried searching cat?</p>
</div>
</div>
<div id='background-container'>
</div>
<script src="instagram.js"></script>
<script src="tests.js"></script>
</body>
</html>