-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<title>Crossout Chat Translater V2</title>
<link type="text/css" rel="stylesheet" href="./style.css">
</head>
<body>
<div class="main">
<div class="topbar">
<p>CCT v2 by Earlam#3915</p>
<p class='link' id='supp'>🔗Support</p>
<p class='link' id='lang'>⚙️Language</p>
<p class='link' id='exit'>🚪Exit</p>
</div>
<div id="flags">
<img id="en" class="flag" src="./flags/en.svg" width="32" height="32">
<img id="fr" class="flag" src="./flags/fr.svg" width="32" height="32">
<img id="es" class="flag" src="./flags/es.svg" width="32" height="32">
<img id="it" class="flag" src="./flags/it.svg" width="32" height="32">
<img id="ru" class="flag" src="./flags/ru.svg" width="32" height="32">
<img id="de" class="flag" src="./flags/de.svg" width="32" height="32">
<img id="tr" class="flag" src="./flags/tr.svg" width="32" height="32">
</div>
<div id="root">
</div>
</div>
</body>
<script src="./renderer.js"></script>
</html>