forked from ChromeGaming/Formation-Absent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (103 loc) · 4.64 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<title>Formation Absent</title>
<meta name="description" content="Formation Absent is turn-based puzzler made for js13k games competition 2017" />
<meta name="keywords" content="game, javascript, js, html5, puzzle, strategy, tactic" />
<meta name="author" content="Noncho Savov" />
<meta name="copyright" content="Copyright © 2017 by Noncho Savov. All Rights Reserved." />
<meta name="application-name" content="Formation Absent" />
<meta property="og:title" content="Formation Absent by FoumartGames" />
<meta property="og:type" content="article" />
<meta property="og:image" content="http://www.foumartgames.com/games/FormationAbsent/animated_preview.gif" />
<meta property="og:image:width" content="225" />
<meta property="og:image:height" content="225" />
<meta property="og:url" content="http://www.foumartgames.com/games/FormationAbsent/" />
<meta property="og:description"
content="Formation Absent is turn-based puzzler made for js13k games competition 2017." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Formation Absent by FoumartGames" />
<meta name="twitter:description"
content="Formation Absent is turn-based puzzler made for js13k games competition 2017." />
<meta name="twitter:image" content="http://www.foumartgames.com/games/FormationAbsent/icon.png" />
<link rel="stylesheet" href="style.css">
<!--<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-41782328-9', 'auto');
ga('send', 'pageview');
</script>-->
<link rel="icon" href="./favicon.png" type="image/png" />
</head>
<body>
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<div id="frame" class="c">
<div id="container" class="mess c">
<div id="bgr0" class="c bgr mess"></div>
<div id="area" class="c mess"></div>
<div id="titlediv" class="c">
<div id="logo" style="top:12%;left:50%;margin-left:-225px;"></div>
<div id="levelsbtns" class="c"></div>
<button class="y bb i" onClick="messSelect(103)" style="bottom:7%;left:15px;">
<div id="soundbtn" style="position:relative; right:10px;"></div>
</button>
<button class="g m i pad" onClick="messSelect(1)" style="bottom:32%">
<div id="practicebtn" class="bt"></div>
</button>
<button class="b m i pad" onClick="messSelect(101)" style="bottom:18%">
<div id="versusbtn" class="bt"></div>
</button>
<button class="r m i" onDblClick="messSelect(102)" style="bottom:7%">
<div id="multibtn" class="bt"></div>
</button>
</div>
<div id="fade" class="c mess"></div>
<div id="mess" class="c mess l">
<div id="messtxt" class="c"></div>
<button class="g" onClick="proceedClick();" style="bottom:6px; right:6px;">
<div id="messbtn" style="position:relative;"></div>
</button>
</div>
</div>
<div class="u b" style="height:26px"></div>
<div id="bt" class="c"></div>
<div id="copy" class="a" style="left:18px;"></div>
<div id="author" class="a" style="right:18px;"></div>
<button id="closediv" onClick="closeGame()" class="r m i x">
<div id="closebtn"></div>
</button>
</div>
<div class="foot">
<footer class="footer" id="footer">
Copyright © 2024 by Chrome gaming. All Rights Reserved.
<div class="container">
<div class="social-icons">
Contact:
<a href="https://www.facebook.com/profile.php?id=61558763492008" target="_blank">
<img src="https://img.icons8.com/ios-filled/50/000000/facebook-new.png" alt="Facebook" />
</a>
<a href="https://www.instagram.com/chromegamingon/" target="_blank">
<img src="https://img.icons8.com/ios-filled/50/000000/instagram-new.png" alt="Instagram" />
</a>
<a href="https://www.linkedin.com/company/chromegaming" target="_blank">
<img src="https://img.icons8.com/ios-filled/50/000000/linkedin.png" alt="linkedin" />
</a>
<a href="https://www.youtube.com/@ChromeGamingOn" target="_blank">
<img src="https://img.icons8.com/ios-filled/50/000000/youtube.png" alt="youtube" />
</a>
</div>
</div>
</footer>
</div>
<script src="script.js"></script>
</div>
</body>
</html>