-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 868 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Orc Translation - Learn Orc language </title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Learn Orc Language</h1>
<section class="Button">
<button id="GenerateSentence">Generate Sentence</button>
</section>
<section class="OrcContainer">
<img src="./Ressources/Orc.png" alt="Orc" width="300" height="300">
<p id="orcSentence"></p>
</section>
<section class="HumanContainer">
<img src="./Ressources/Human.png" alt="Human" width="300" height="300">
<p id="humanSentence"></p>
</section>
<a href="https://wowpedia.fandom.com/wiki/Orcish_(language)"> Source: Wowpedia</a>
<script src="./main.js"></script>
</body>
</html>