-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.84 KB
/
index.html
File metadata and controls
41 lines (36 loc) · 1.84 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header class="row p-3">
<h1 class="col-12 text-center">Translator</h1>
<h2 class="col 12 lead text-muted text-center">English to Azgarish</h2>
</header>
<main class="container d-flex justify-content-around">
<div class="row mt-4 container-fluid">
<div class="col-sm-6 col-lg-5">
<form class="container-fluid" action="#">
<label class="row d-flex justify-content-center" for="englishInOut"><h2>English</h2></label>
<textarea class="row mx-auto" name="englishInOut" id="englishText" cols="auto" rows="10"></textarea>
</form>
</div>
<div class="col-sm-12 col-md-12 col-lg-2 order-xs-2 order-sm-2 order-md-3 order-lg-2 order-xl-2 d-flex align-items-center justify-content-center mt-4 mb-4">
<button class="btn" type="submit" id="translate">Translate</button>
</div>
<div class="col-sm-6 col-lg-5 order-md-2">
<form class="container-fluid" action="#">
<label class="row d-flex justify-content-center" for="azgarishInOut"><h2>Azgarish</h2></label>
<textarea class="row mx-auto" name="azgarishInOut" id="azgarishText" cols="auto" rows="10"></textarea>
</form>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>