-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Connor McLaughlin">
<meta name="description" content="A simple translator for all of your Aurebesh translation needs!">
<meta name="keywords" content="star wars, aurebesh, translator, sci fi, galaxy" />
<link rel="stylesheet" type="text/css" href="reset.css" />
<link rel="stylesheet" type="text/css" href="stylesv3.css" />
<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=Expletus+Sans:ital,wght@0,400..700;1,400..700&family=Kode+Mono:wght@400..700&display=swap"
rel="stylesheet">
<link rel="icon" type="image/png" sizes="192x192" href="assets/android-chrome-192x192.png">
<title>Aurebesh Translator</title>
</head>
<body>
<div class="wrapper">
<header>
<h1>Aurebesh Translator</h1>
</header>
<main>
<p>"Aurebesh is for the common folk. Snobs like Villachor are way too upper-level for that." <span>
-Lando
Calrissian, to Tavia Kitik
</span></p>
<div class="trans-container">
<div class="button-box">
<textarea name="english_text" id="one" placeholder="Enter text here .."></textarea>
<button class="butt" id="quote_gen">Generate Random Scentence</button>
</div>
<textarea name="translated_text" id="two" placeholder="" spellcheck="false"></textarea>
</div>
<p>Aurebesh was a writing system commonly used to represent the Basic language. Its name was a portmanteau
of its first two letters, Aurek and Besh. Aurebesh was commonly used by major governments from the
Galactic Empire to the Confederacy of Independent Systems.</p>
<footer>
<a target="_blank" href="https://github.com/Gingerlox">
<img class="github" src="assets/github.png" alt="githun icon">
</a>
<p>Made by Connor McLaughlin</p>
</footer>
</main>
</div>
<script src="script.js"></script>
</body>
</html>