-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshooting.html
75 lines (45 loc) · 1.76 KB
/
shooting.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
64
65
66
67
68
69
70
71
72
73
74
75
<!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>SHOOTING GAMES</title>
</head>
<body>
<div id="Shoot">THE BEST COLLECTION OF SHOOTING GAMES</div>
<link rel="stylesheet" href="shooting.css">
<script src="shooting.js"></script>
<div class="container">
<button onclick=logoutofshootpage() id="home" >HOME</button>
<button id="logout" onclick="logout()">LOG OUT</button>
<div id="shoot1">
<a href="https://play.famobi.com/smarty-bubbles-2" target="_blank">
<img src="https://img.cdn.famobi.com/portal/html5games/images/tmp/SmartyBubbles2Teaser.jpg?v=0.2-e86af1e2" height=350 width=320
border="0" center="align">
<p id="BUBBLE">SMARTY BUBBLES-2</p>
</a>
</div>
<div id="shoot2">
<a href="https://play.famobi.com/bubble-hamsters" target="_blank">
<img src="https://img.cdn.famobi.com/portal/html5games/images/tmp/BubbleHamstersTeaser.jpg?v=0.2-e86af1e2" border="0" width="320"
height="350" center="align">
<p id="bubble-hamsters">BUBBLE HAMSTERS</p>
</a>
</div>
<div id="shoot3">
<a href="https://www.crazygames.com/game/forward-assault" target="_blank">
<img src="https://tse2.mm.bing.net/th?id=OIP.zBFQJHnuTsaUk5Jav8MsfgAAAA&pid=Api&P=0&w=293&h=154" height=350 width=320 border=0 center=align>
<p id="forward-assault">FORWARD ASSAULT</p>
</a>
<style>
body{
background-image: url("https://tse4.mm.bing.net/th?id=OIP.Uc9fCvYTbUda6qJlFzcwvgHaE8&pid=Api&P=0&w=238&h=159");
background-size: cover;
background-blend-mode: overlay;
}
</style>
</div>
</div>
</body>
</html>