-
Notifications
You must be signed in to change notification settings - Fork 13
/
popup.html
50 lines (49 loc) · 1.28 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
44
45
46
47
48
49
50
<!--basically 3kh0.github.io but its an offline extension-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>games</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/index.js"></script>
<!-- add unsafe csp-->
<meta http-equiv="Content-Security-Policy" content="script-src 'unsafe-inline' 'unsafe-eval' 'self'">
</head>
<body>
<div id="heading">
<h1>games</h1>
<div class="stupidhorizontalline"></div>
</div>
<div id="pinned"></div>
<div id="games">
<div class="game">
<div class="game-image">
<img src="imgs/waltuf.jpeg" alt="">
</div>
<div class="game-info">
<h2>lol</h2>
<p></p>
</div>
<div class="game-buttons">
<button class="game-button">play</button>
</div>
</div>
</div>
<div id="templates" style="opacity: 1;">
<div class="game">
<div class="game-image">
<img src="imgs/waltuf.jpeg" alt="">
</div>
<div class="game-info">
<h2></h2>
<p></p>
</div>
<div class="game-buttons">
<button class="game-button">play</button>
</div>
</div>
</div>
</body>
</html>