-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
63 lines (55 loc) · 2.27 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html rgb(224, 236, 227);>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Popup Window</title>
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
</head>
<body style="background-color:#f7f2e7;">
<body>
<div class="button">
<button id="happyButton" class="pearButton"> <img src="pears/happy-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="sadButton" class="pearButton"> <img src="pears/sad-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="blushButton" class="pearButton"> <img src="pears/blush-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="madButton" class="pearButton"> <img src="pears/mad-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="confusedButton" class="pearButton"> <img src="pears/confused-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="contentButton" class="pearButton"> <img src="pears/content-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="cryingButton" class="pearButton"> <img src="pears/crying-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="sleepingButton" class="pearButton"> <img src="pears/sleeping-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="sunglassButton" class="pearButton"> <img src="pears/sunglass-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="tongueButton" class="pearButton"> <img src="pears/tongue-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="veryConfusedButton" class="pearButton"> <img src="pears/very-confused-pear.png" width="39" height="57"> </button>
</div>
<div class="button">
<button id="diceButton" class="pearButton"> <img src="pears/dice.png" width="40" height="37"> </button>
</div>
<div class="button">
<textarea id="textInput" name="story" rows="5" cols="5">What should Katy Peary Say?</textarea>
</div>
<div class="button">
<button id="textInputButton">Submit</button>
</div>
<script src="popup.js" charset="utf-8"></script>
</body>
</html>