-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
39 lines (36 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Title</title>
<script src="popup.js"></script>
<script src="classDefinition.js"></script>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="materialize.min.css" />
<link rel="stylesheet" href="./popup.css" />
</head>
<body>
<div class="row" style="width:300px; padding: 10px !important;">
<div class="card-content black-text">
<h2 style="font-size: 28px; font-weight: 300;" class="card-title">Flagged Sites </h2>
<hr>
<p>
This extension helps you to flag fake news bu users niticing that this could be fake news and by them raising the concern..
</p>
<hr>
<p>The number of times this website has been flagged by visitors <span id="circle"> 5 </span></p>
<p class="red-text"><em>It could be a fake news site</em></p>
<hr>
</div>
<div class="card-action">
<h2 style="font-size: 16px; text-align: center; padding: 5px; background: red; border: 1px solid red; border-radius: 15px;"><a style="text-decoration: none; color: #fff; " href="">
<i style=" font-size: 16px; float: left;" class="material-icons"> flag</i> Flag this article</a>
</a></h2>
</div>
</div>
</body>
</html>
<!DOCTYPE html>