-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (62 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RPG - Tradutor</title>
<!--Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@100;200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<main>
<article>
<form action="" id="form-tradutor-rpg">
<div class="form-title">
<h1>TRADUTOR OBSERVADOR</h1>
</div>
<fieldset class="lingua">
<label for="lingua">Língua</label>
<select name="lingua" id="lingua" required>
<option value="LinguaRPG">Português -> Língua Observador</option>
<option value="Portugues">Língua Observador -> Português</option>
</select>
</fieldset>
<fieldset class="conteudo-traduzir">
<label for="conteudo-traduzir">Conteúdo</label>
<textarea name="conteudo-traduzir" id="conteudo-traduzir" required></textarea>
</fieldset>
<fieldset class="traduzir-inverter">
<input type="submit" id="traduzir" value="TRADUZIR">
<input type="submit" id="inverter" value="INVERTER">
</fieldset>
<fieldset class="conteudo-traduzido">
<label for="conteudo-traduzido">Tradução</label>
<textarea name="conteudo-traduzido" id="conteudo-traduzido" cols="40" rows="10" readonly></textarea>
</fieldset>
<fieldset class="copiar">
<input type="submit" id="copiar" value="COPIAR">
</fieldset>
</form>
</article>
</main>
<footer>
<h1>
<a href="https://github.com/LoriaLawrenceZ">Lorenzo O. Zimbres </a>
&
<a> Paiva8859</a>
</h1>
</footer>
</body>
<script src="js/index.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EWXY9Y8D4V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EWXY9Y8D4V');
</script>
</html>