-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 817 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
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pig Latin</title>
<link rel="stylesheet" href="./styles.css">
<link rel="icon" href="./assets/pig.png">
</head>
<body>
<div id="form">
<form>
<h2 class="form-item title">ENGLISH</h2>
<input class="form-item" type="text" id="input" placeholder="Type something" value="Ashton Sprunger">
<button class="form-item" type="submit">TRANSLATE</button>
</form>
</div>
<div id="result-wrapper">
<div id="results">
<h2 class="title" id="results-h">PIG LATIN</h2>
<p id="results-p"></p>
</div>
</div>
<script src="./pigLatin.js"></script>
</body>
</html>