forked from KhushPatel2003/productpal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
90 lines (78 loc) · 2.47 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=League Spartan' rel='stylesheet'>
<style>
body {
font-family: 'League Spartan';
font-size: 20px;
}
</style>
<link rel="stylesheet" type="text/css" href="popup.css" />
</head>
<body>
<div id="outline">
<div id="header">
<img
src="name.png"
alt="cat"
/>
</div>
<hr id="line" />
<div id="boxes">
<div id="box">
<img id="og-image1" width="100px" height="100px">
<p id="site-name1"></p>
<button id="button1">Visit item!</button>
</div>
<div id="box">
<img id="og-image2" src="" width="100px" height="100px">
<p id="site-name2"></p>
<button id="button2">Visit item!</button>
</div>
<div id="box">
<img id="og-image3" src="https://multimedia.bbycastatic.ca/multimedia/products/500x500/159/15966/15966836.jpg" width="100px" height="100px">
<p id="site-name3"></p>
<button id="button3">Visit item!</button>
</div>
<div id="box">
<img id="og-image4" src="" width="100px" height="100px">
<p id="site-name4"></p>
<button id="button4">Visit item!</button>
</div>
<div id="box">
<img id="og-image5" src="" width="100px" height="100px">
<p id="site-name5"></p>
<button id="button5">Visit item!</button>
</div>
<div id="box" style="display: none">
<img id="og-image6" src="" width="100px" height="100px">
<p id="site-name6"></p>
<button id="button6">Visit item!</button>
</div>
<div id="box" style="display: none">
<img id="og-image7" src="" width="100px" height="100px">
<p id="site-name7"></p>
<button id="button7">Visit item!</button>
</div>
<div id="box" style="display: none">
<img id="og-image8" src="" width="100px" height="100px">
<p id="site-name8"></p>
<button id="button8">Visit item!</button>
</div>
<div id="box" style="display: none">
<img id="og-image9" src="" width="100px" height="100px">
<p id="site-name9"></p>
<button id="button9">Visit item!</button>
</div>
<div id="box" style="display: none">
<img id="og-image10" src="" width="100px" height="100px">
<p id="site-name10"></p>
<button id="button10">Visit item!</button>
</div>
</div>
<a href="#" id="showMore">Show more</a>
</div>
<script src="popup.js"></script>
</body>
</html>