-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 2.3 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
<!doctype html>
<html>
<head>
<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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css">
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
</head>
<body>
<header>
<div class="header-cont">
<img class="parrot-img" src="assets/parrot.png" alt="an image of a parrot">
<div class="head-cont">
<h1>PollyGlot</h1>
<h2>Perfect Translation Every Time</h2>
</div>
</div>
</header>
<div class="cont">
<main>
<section id="msgs" class="container">
<p class="reciever-msg">Hi, I'am PollyGlot! Select the language you want me to translate into, type
your text and hit send!</p>
</section>
<section class="bla">
<div class="input">
<div class="text">
<input type="text" id="message" maxlength="100">
<i id="send" class="fa-solid fa-circle-arrow-right icon"></i>
</div>
</div>
<div class="language-selection">
<label for="French">
<input type="radio" name="lang" id="French">
<img class="flag" src="assets/fr-flag.png" alt="French flag">
</label>
<label for="Spanish">
<input type="radio" name="lang" id="Spanish">
<img class="flag" src="assets/sp-flag.png" alt="Spanish flag">
</label>
<label for="Japanese">
<input type="radio" name="lang" id="Japanese">
<img class="flag" src="assets/jpn-flag.png" alt="Japanese flag">
</label>
</div>
</section>
</main>
</div>
<script src="index.js" type="module"></script>
</body>
</html>