-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
38 lines (30 loc) · 797 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trending Stocks</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<p>News of trending stocks</p>
<ul>
<li id="stockText1">Loading...</li>
<p id="visit1">visit</p>
<hr>
<li id="stockText2">Loading...</li>
<p id="visit2">visit</p>
<hr>
<li id="stockText3">Loading...</li>
<p id="visit3">visit</p>
<hr>
<li id="stockText4">Loading...</li>
<p id="visit4">visit</p>
<hr>
<li id="stockText5">Loading...</li>
<p id="visit5">visit</p>
</ul>
<script src="./script.js">
</script>
</body>
</html>