-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 1.99 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
<!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">
<title>Valyrian | Translate</title>
<link rel="icon" type="image/png" href="images/icon.png" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Valyrian Speak</div>
</nav>
<header class="hero">
<img class="hero-img" src="images/headerhero.svg" alt="headerhero">
<img class="hero-img" src="images/throne.png" alt="headerhero">
<h1 class="hero-heading">Valyrianese <span class="heading-inverted">Translate to valyrian</span></h1>
</header>
<main>
<textarea id="txt-input"
placeholder="Put your message here which you want to convert to valyrian languague"></textarea>
<button class="btn-primary" id="btn-translate">Translate to Valyrian</button>
<div>Your translate will appear here 👇</div>
<div id="output"></div>
</main>
<footer class="footer">
<div class="footer-header">About</div>
<div class="footer-description">Are you a fan of Game of thrones? Did you know that the valyrian they say is fictional fantasy novels by George R. R. Martin, popularly known as Game of Thrones.</div>
<ul class="list-non-bullet">
<li class="list-item-inline">
<a target="_blank" class="link" href="https://github.com/rajulkoshta">github</a>
</li>
<li class="list-item-inline">
<a target="_blank" class="link" href="https://twitter.com/RajulKoshta">twitter</a>
</li>
<li class="list-item-inline">
<a target="_blank" class="link" href="https://www.linkedin.com/in/rajulkoshta/">LinkedIn</a>
</li>
</ul>
</footer>
<script src="app.js"></script>
</body>
</html>