-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bri-ify</title>
<link rel="shortcut icon" type="image/x-icon" href="GB-bricks.png">
<link rel="stylesheet" href="style.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=Concert+One&family=Fredoka+One&display=swap" rel="stylesheet">
</head>
<body>
<div class="title">
<img src="./GB-bricks.png" alt="UK flag" class="logo">
<h1>Bri<span class="span-title">'</span>ify</h1>
</div>
<div class="card-container">
<div class="text-container">
<p>Enter text and translate the words into British English.</p>
<p>Blend in with the locals by Britifying your phrases today.</p>
</div>
<div class="spacer"></div>
<main class="form-container">
<textarea name="text-input" id="text-input" cols="10" rows="10"></textarea>
<div class="buttons-container">
<button class="button" id="run">Run</button>
<button class="button" id="reset">Reset</button>
<button class="button" id="speakButton">Say it</button>
<div class="live-translate-switch">
<label class="translate-label" id="live-translate">Live translate</label>
<label class="switch">
<input type="checkbox" id="toggle-live" aria-label="toggle">
<span class="slider round"></span>
</label>
</div>
</div>
</main>
</div>
<script src="index.js"></script>
</body>
</html>