-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 943 Bytes
/
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
<!DOCTYPE html>
<html>
<!--Versão 0.92 06/05/2020-->
<head>
<title>UAbALL</title>
<meta charset="UTF-8" />
<meta
name="description"
content="UAbALL - Automata Learning Lab | Um Simulador para o Ensino."/>
<meta name="keywords" content="Automatos, gramaticas e Maquinas Touring" />
<meta name="author" content="André Maciel Sousa" />
<meta name="generator" content="Visual Studio Code" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="text/javascript">
function idioma() {
switch (navigator.language.substring(0, 2)) {
case "en":
window.location.href = "./start.html?lang=EN";
break;
case "es":
window.location.href = "./start.html?lang=ES";
break;
default:
window.location.href = "./start.html?lang=PT";
break;
}
}
</script>
</head>
<body onload="idioma();"></body>
</html>