-
Notifications
You must be signed in to change notification settings - Fork 0
/
puzzle.html
63 lines (44 loc) · 1.53 KB
/
puzzle.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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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>PUZZLE GAMES</title>
</head>
<body>
<script src="puzzle.js"></script>
<link rel="stylesheet" href="puzzle.css">
<div id="starter">BEST COLLECTION OF PUZZLE GAMES
</div>
<button id="home" onclick="logoutofpuzzlepage()">HOME</button>
<BUTTON ID="logout" onclick="logout()">LOG OUT</BUTTON>
<div class="container">
<div id="puz1">
<a href="https://play.famobi.com/mahjong-3d" target="_blank">
<img src="https://img.cdn.famobi.com/portal/html5games/images/tmp/Mahjong3dTeaser.jpg?v=0.2-e86af1e2"border=0 center=align height=350 width=320>
<p id="pz1">MAHJONG-3D</p>
</a>
</div>
<div id="puz2">
<a href="" target="_blank">
<img src="https://img.cdn.famobi.com/portal/html5games/images/tmp/JewelsMania_Teaser.jpg?v=0.2-e86af1e2" border=0 center=align height=350 width=320>
<p id="pz2">JEWELS MANIA</p>
</a>
</div>
<DIV ID="puz3">
<a href="https://play.famobi.com/maze" tager="_blank">
<img src="https://img.cdn.famobi.com/portal/html5games/images/tmp/MazeTeaser.jpg"border=0 center=align height=350 width=320>
<p id="pz3">MAZE</p>
</a>
</DIV>
</div>
<style>
body{
background-image: url("https://tse1.mm.bing.net/th?id=OIP.UTEu_7YuOm2_F67Cyc5XZQHaE8&pid=Api&P=0&w=253&h=170");
background-size:cover;
background-blend-mode: hard-light;
}
</style>
</body>
</html>