-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (40 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/CSS/utils.css">
<link rel="stylesheet" href="/CSS/style.css">
<title>Yoda Translator</title>
</head>
<body>
<!-- heading -->
<h1>Yoda Says👽</h1>
<!-- body content -->
<div class="content">
<textarea class="txt ip" placeholder="Human Says"></textarea>
<button class="btn">Yoda👽</button>
<!-- <img class="chat image" src="/images/chat-bubble.png" alt="Says Yoda👽"> -->
<textarea class="txt op" placeholder="👽Says Yoda"></textarea>
<img class="yoda image" src="/images/yoda.png" alt="Yoda👽">
</div>
<!-- footer -->
<footer class="footer">
<h3 class="about">ABOUT</h3c>
<p class="app">This web-app translates human readable sentences into yoda.</p>
<a class="source" href="https://github.com/clevercoderjoy/yoda-translator" target="_blank">View Source Code</a>
<ul class="social">
<li class="social-list"><a class="social-link" href="https://www.linkedin.com/in/joy-joseph-75b30812a/" target="_blank"><i class="fa fa-linkedin fa-1x"></i></a></li>
<li class="social-list"><a class="social-link" href="https://github.com/clevercoderjoy" target="_blank"><i class="fa fa-github fa-1x"></i></a></li>
<li class="social-list"><a class="social-link" href="https://stackoverflow.com/users/14695948/joy-bose?tab=profile" target="_blank"><i class="fa fa-stack-overflow fa-1x"></i></a></li>
<li class="social-list"><a class="social-link" href="https://www.instagram.com/_clevercoderjoy_/" target="_blank"><i class="fa fa-instagram fa-1x"></i></a></li>
<li class="social-list"><a class="social-link" href="https://api.whatsapp.com/send?phone=+919455869211" target="_blank"><i class="fa fa-whatsapp fa-1x"></i></a></li>
</ul>
<p class="copyright">Copyright © clevercoderjoy</p>
</footer>
<!-- js script -->
<script src ="app.js" type="text/javascript"></script>
</body>
</html>