forked from yatharthrawat/FactChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
37 lines (32 loc) · 695 Bytes
/
popup.html
File metadata and controls
37 lines (32 loc) · 695 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
@import url('https://fonts.googleapis.com/css?family=Dosis');
html{
background: #404447; /* fallback for old browsers */
width: 300px;
font-family:"Dosis", sans-serif !important;
}
body{
color: white;
font-family:"Dosis", sans-serif !important;
}
h1{
color:blanchedalmond;
}
#url{
color:white;
}
</style>
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<h1 id="title"></h1>
<div id="mugshot"></div>
<h3 id="headline"></h3>
<div id="truthMeter"></div>
<h4 id="explanation"></h4>
<h5> <a id="url">Visit Page</a> </h5>
</body>
</html>