-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (53 loc) · 2.48 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
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yoda Translator</title>
<link rel="stylesheet" href="styles.css">
<!-- <link rel="preconnect" href="https://fonts.gstatic.com"> -->
<link href="https://fonts.googleapis.com/css2?family=Caveat&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=BioRhyme:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Title and Hero -->
<div id="hero" class="star-wars-border">
<h1 class="title-style">English to Yoda Speak Translator</h1>
<img id="yoda-img" src="static/images/hero-yoda.png" alt="yoda-image">
</div>
<!-- Main App -->
<div id="main-app">
<!-- Input Box -->
<div class="star-wars-border">
<h4 id="special-box-label" class="box-labels">⌨️ Enter your english phrase</h4>
<textarea id="txt-input" placeholder="please enter english text to be converted in Yoda Speak..."></textarea>
</div>
<!-- Translate Button -->
<div>
<button id="btn-translate" all-edges">Translate</button>
</div>
<!-- Output Box -->
<div class="star-wars-border">
<h4 class="box-labels"><img id="yoda-icon" src="static/images/yoda-icon.svg" > Yoda Speak Language will be displayed below 👇</h4>
<div id="output-box"></div>
</div>
</div>
<!-- Social Links -->
<footer id="socials-container" class="star-wars-border" >
<!-- Made By appsplash99 -->
<h3 id="made-by">Made with ❤️ by appsplash99</h3>
<!-- Lets Connect -->
<h1 class="title-style">Let's Connect</h1>
<!-- Social Icons -->
<div id="social-links" >
<a href="https://github.com/appsplash99" alt="github" target="blank"><img src="static/images/github.svg" alt="github-appsplash99"></a>
<a href="https://twitter.com/ApurvChimralwar" alt="twitter" target="blank"><img src="static/images/twitter.svg" alt="twitter"></a>
<a href="https://hashnode.com/@appsplash99" alt="hashnode" target="blank"><img src="static/images/hashnode.png" alt="hashnode"></a>
<a href="https://in.linkedin.com/in/ApurvChimralwar" alt="linkedin" target="blank"><img src="static/images/linkedin.svg" alt="linkedin"></a>
<a href="" alt="email" target="blank"><img src="static/images/gmail.svg" alt="email"></a>
</div>
</footer>
<!-- Putting Script at last so that html loads first -->
<script src="app.js" type="text/javascript"></script>
</body>
</html>