-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (84 loc) · 4.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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en-uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Chronolecticon</title>
<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=Italiana&family=Jacques+Francois+Shadow&family=Jacques+Francois&family=Judson&display=swap" rel="stylesheet">
<link rel="stylesheet" href="src/normalize.css" />
<link rel="stylesheet" href="src/style.css" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<script defer src="src/script.js"></script>
</head>
<body class="borderCarve">
<header class="parent borderFrame">
<img src="images/favicon-32x32.png" id="logo" class="childWhingey" alt="logo"/>
<h1 class="childBully">The Chronolecticon</h1>
<p class="childDull alignRight">The Discerning Professional's Linguistic Tool</p>
</header>
<main class="borderFrame">
<section id="input">
<h2 class="alignCenter">Rustic Verbiage</h2>
<form class="parent borderNone alignCenter" action="#" method="get">
<div id="formSelect1" class="childWhingey borderFrame">
<label for="language1Select" class="form__label center">
Serious Language One
</label>
<br/>
<select name="language1Input" id="language1Select">
<option value="">--Please choose an option--</option>
<option value="oldEnglish">Old English</option>
<option value="pigLatin">Pig Latin</option>
<option value="mandalorian">Mandalorian</option>
<option value="shakespeare">Shakespeare</option>
<option value="pirate">Pirate</option>
</select>
</div>
<div id="formUserText" class="childBully borderFrame">
<input type="text" id="originalTextInput" name="originalTextInput" class="form__input" placeholder="Untranslated Text" required="">
<label for="originalTextInput" class="form__label">
Untranslated Text
</label>
<button type="submit">Translate!</button>
</div>
<div id="formSelect2" class="childWhingey borderFrame">
<label for="language2Select" class="form__label center">
Serious Language Two
</label>
<br/>
<select name="language2Input" id="language2Select">
<option value="">--Please choose an option--</option>
<option value="oldEnglish">Old English</option>
<option value="pigLatin">Pig Latin</option>
<option value="mandalorian">Mandalorian</option>
<option value="shakespeare">Shakespeare</option>
<option value="pirate">Pirate</option>
</select>
</div>
</form>
</section>
<section id="output">
<h2 class="alignCenter">Refined Parlance</h2>
<div id="loading-message">Loading...</div>
<div class="parent borderNone">
<div id="result1Box" class="childDull borderFrame alignCenter">
<h3>Translation One</h3>
<hr/>
<!-- <div class="loading-message">Loading...</div> -->
</div>
<div id="result2Box" class="childDull borderFrame alignCenter">
<h3>Translation Two</h3>
<hr/>
<!-- <div class="loading-message">Loading...</div> -->
</div>
</div>
</section>
</main>
<footer class="parent borderFrame">
<p class="childDull alignCenter">Created by Phoebe & Jason</p>
<p class="childDull alignCenter">2023</p>
</footer>
</body>
</html>