-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (88 loc) · 3.41 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
<!DOCTYPE html>
<html>
<head>
<title>CoaXioN</title>
<meta name="keywords" content="coaxion">
<meta name="description" content="Group of hobbyists.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./res/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="window">
<div id="screenCover" onclick="closeEnterScreen()">
</div>
</div>
<main>
<div class="playbackButton" onclick="music()">
</div>
<div class="constructionMessage">
<p style="color:black">This website is currently under construction.</p>
</div>
<div class="topBar">
<div class="logoDiv" onclick="loadPageContents('home')">
<img src="./res/coaxvectorblackbg.svg" alt="coaxion" class="logo">
</div>
<div class="topBarSpacer">
</div>
<div class="shortcuts">
<div class="modIcon" id="dmcrIcon" onclick="loadPageContents('deathmatch_classic_refragged')" onmouseover="playSound('./res/hover.mp3')">
</div>
<div class="modIcon" id="lfIcon" onclick="loadPageContents('lambda_fortress');" onmouseover="playSound('./res/hover.mp3')">
</div>
<div class="modIcon" id="tepIcon" onclick="loadPageContents('the_espionage_project');" onmouseover="playSound('./res/hover.mp3')">
</div>
<div class="modIcon" id="coplayIcon" onclick="loadPageContents('coplay');" onmouseover="playSound('./res/hover.mp3')">
</div>
</div>
<div class="topBarSpacer">
</div>
<div style="width:225px;">
</div>
</div>
<div id="contentWrap">
<div class="topFiller"></div>
<div id="transitionScreen"></div>
<div id="infoCards">
<!--Content goes here--->
</div>
</div>
<footer id="footer">
<div class="shortcuts">
<a href="https://twitter.com/CoaXionGames" rel="noopener" target="_blank">
<div class="socialIcon" id="twitterIcon"></div>
</a>
<a href="https://bsky.app/profile/coaxion.games" rel="noopener" target="_blank">
<div class="socialIcon" id="blueskyIcon"></div>
</a>
<a href="https://www.youtube.com/@CoaXionGames" rel="noopener" target="_blank">
<div class="socialIcon" id="youtubeIcon"></div>
</a>
<a href="https://discord.gg/dSfXTNEGP7" rel="noopener" target="_blank">
<div class="socialIcon" id="discordIcon"></div>
</a>
<a href="https://steamcommunity.com/groups/Coaxion" rel="noopener" target="_blank">
<div class="socialIcon" id="steamIcon"></div>
</a>
<a href="https://www.moddb.com/company/coaxion" rel="noopener" target="_blank">
<div class="socialIcon" id="moddbIcon"></div>
</a>
<a href="https://community.lambdageneration.com/user/coaxion" rel="noopener" target="_blank">
<div class="socialIcon" id="lambdagenIcon"></div>
</a>
<a href="https://github.com/CoaXioN-Games/" rel="noopener" target="_blank">
<div class="socialIcon" id="githubIcon"></div>
</a>
</div>
<p style="margin: 15px; text-align: center;">CoaXioN is not affiliated with Valve Corporation or id Software.</p>
<div id='stats' style="height:60px;width:200px;">
<div style="position:absolute; width:200px; height:25px; text-align:center; background-color:#141414;">
<p>Total Page Views:</p>
</div>
</div>
</footer>
</main>
<script src="./enter.js"></script>
</body>
</html>