forked from Definehack/Define24
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
43 lines (40 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Text Reader</title>
<link rel="stylesheet" href="popup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<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=Inter:wght@100..900&display=swap" rel="stylesheet">
</head>
<body>
<div class = UI id = UI>
<div id="HeaderName" class="HeaderName">
<div>
<h1>
Fact Check
</h1>
</div>
</div>
<div class="StatusBox" id="StatusBox">
<div id="Status" class="Status">
<i class="fa-solid fa-circle-question"></i>
</div>
<div class="reliability" id="reliability">
<p>Reliability: <span id="reliabilityPercentage">Unknown</span></p>
<p>Status: <span id="statusText">Uncertain</span></p>
</div>
</div>
<div>
<div class="descriptionBox" id="descriptionBox">
<p id="descriptionText">Scan to check reliability</p>
</div>
</div>
<button class="readButton" id="readButton">Scan</button>
</div>
<script src="popup.js"></script>
</body>
</html>