-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
58 lines (57 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<div style="display:inline-block; vertical-align:top;">
<img class="logoimg" src="images/worthie128.png"/>
</div>
<div style="display:inline-block;">
<p class="title">WORTHIE</p>
</div>
</div>
<div class="es">
<div style="display: inline;float: left;">
<p class="subtitle">Sustainability</p>
</div>
<div style="display: inline;float: right;margin-top:10px;">
<p class="num">3.0</p>
<img class="starimg" src="images/star.png"/>
</div>
</div>
<div class="es">
<div style="display: inline;float: left;">
<p class="subtitle">Ethics</p>
</div>
<div style="display: inline;float: right;margin-top:10px;">
<p class="num">3.0</p>
<img class="starimg" src="images/star.png"/>
</div>
</div>
<div class="es">
<div style="display: inline;float: left;">
<p class="subtitle">Quality</p>
</div>
<div style="display: inline;float: right;">
<p class="num">5.0</p>
<img class="starimg" src="images/star.png"/>
</div>
</div>
<div class="es">
<div style="display: inline;float: left;">
<p class="orangesubtitle">WORTHIE THINKS</p>
</div>
<div style="display: inline;float: right;margin-top:10px;">
<p class="affirm">YES</p>
</div>
</div>
<div class="buttons">
<button type="button" id="button1">I'm not buying</button>
<button type="button" id="button2">Save for later</button>
<button type="button" id="button3">Buy and offset</button>
</div>
<script src="popup.js"></script>
</body>
</html>