-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
26 lines (26 loc) · 854 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Inspirobot #1 Fan Crucial Chrome Extension</title>
<meta
name="description"
content="An extension I made for friend so that she can remain inspired while waiting for a build"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="inspiroImage" class="inspiro-image" aria-describedby="true">
<img
id="inspiration"
alt="loading some freshly generated inspiration"
src="images/loading.png"
/>
</div>
<input id="imageLinkContent" type="text" />
<button id="copyButton">📋 Cop this inspo.</button>
<script src="popup.js"></script>
</body>
</html>