-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banana Speak Translator | amolsasane</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation">
<div class="nav-title">
<h1>Banana Babble</h1>
</div>
</nav>
<main class="flex-container-main">
<section class="sec-one">
<div class="img-container">
<img class="img-one" src="images/minions1.png" />
</div>
</section>
<section class="sec-two">
<h1>Translating Fun with Minion Speak!</h1>
<textarea placeholder="Type something here.." id="txt-input"></textarea>
<button id="btn-translate">Translate</button>
<div id="output"></div>
</section>
<section class="sec-three">
<img class="img-two" src="images/minions2.png" />
</section>
</main>
<footer class="footer">
<div class="footer-content">
<h2>Keep Calm and Speak Minionese On!</h2>
<img class="img-footer" src="images/minions3.png" />
</div>
</footer>
<script src="app.js" type="text/javascript"></script>
</body>
</html>