-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprice.html
42 lines (36 loc) · 1.62 KB
/
price.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="Chart.js"></script>
<title>Dark Patterns</title>
<link rel="stylesheet" href="price.css">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@800&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<div class="back-page">
<a class="price-anchor" href="popup.html"> <svg xmlns="http://www.w3.org/2000/svg" height="20" width="25" viewBox="0 0 512 512"><path fill="#0b3275" d="M459.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4L288 214.3V256v41.7L459.5 440.6zM256 352V256 128 96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160C4.2 237.5 0 246.5 0 256s4.2 18.5 11.5 24.6l192 160c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V352z"/></svg></a>
<h1 class="back-head">Back to Home Page </h1>
</div>
<div class="head">
<img id="head-logo" src="images/logo-removebg.png" alt="logo">
<h1 id="head-title">Dark Pattern Detector</h1>
</div>
<br>
<div class="container"></div>
<div id="p">
<div class="content1">
<p>Loading....</p>
</div>
</div>
<canvas id="myChart" width="400" height="400"></canvas>
<script src="/content.js"></script>
</div>
</body>
</html>