This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/normalizer.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="styles/imports.css">
<title>FoxSimulator</title>
<script src="libs/jquery-3.3.1.js"></script>
<script src="classesJS/Translate.js"></script>
<script src="classesJS/buttonsEvents.js"></script>
<script src="classesJS/keysEvents.js"></script>
</head>
<body>
<div>
<div id="langs">
<div class="en">
<span>EN</span>
</div>
<div class="pl">
<span>PL</span>
</div>
</div>
<div>
<div id="consoleOutput" class="console">
<p translate="welcome">Welcome to the FoxSimulator!</p>
</div>
<div>
<div contenteditable="true" tabindex="1" id="consoleInput" class="console"></div>
</div>
<div id="consoleCommands">
<span translate="commandsList" class='commandsList'>List of commands:</span>
<p translate="logIn" command="login">login</p>
<p translate="register" command="register">register</p>
</div>
</div>
</div>
<script src="classesJS/Controler.js"></script>
<script src="main.js"></script>
</body>
</html>