-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="icon.svg" type="image/x-icon">
<link rel="stylesheet" href="./components/main.css">
<script type="module" src="./app.js"></script>
<title>Pollyglot</title>
</head>
<body>
<template class="banner">
<img src="./data/parrot.svg" alt="parrot logo">
<h1>LingoLink</h1>
<h5>Perfect Translation Every Time</h5>
</template>
<div class="form-boundary">
<form>
<label for="user-input">Text to translate 👇</label><br>
<textarea name="" id="user-input" cols="30" rows="5" required></textarea><br>
<label for="language" name="language">Choose languages:</label><br>
<select name="language" id="language" required>
<option value="english">English</option>
<option value="spanish">Spanish</option>
<option value="french">French</option>
</select><br>
<button>Translate</button>
</form>
<p id="translation"></p>
</div>
</body>
</html>