forked from AustinCodingAcademy/JS211_PigLatinProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 992 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 992 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css"></link>
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@500&family=Hachi+Maru+Pop&display=swap" rel="stylesheet">
<title>Pig Latin</title>
<link rel="icon" href="piggy-fav-icon.png" />
</head>
<body>
<main>
<h3>Pig Latin Generator</h3>
<div id="display-element"></div>
<div id="image-containter">
<p id="pigTalk">So you want to speak Pig Latin, Ay!</p>
</div>
<div id="textContainer">
<textarea id="stringInput" value="" placeholder="Start typing here..." oninput="storeString(this.value)"></textarea>
<textarea id="pigLatinResult" placeholder="Pig Latin Translation here!"></textarea>
</div>
<div id="buttonContainer">
<button class= "piggyBtn" onclick="splitString()">Get piggy!</button>
<button class= "clearBtn" onclick="clearData()">Clear!</button>
</div>
</main>
<script src="DOM.js"></script>
</body>
</html>