-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 883 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
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="js/jquery-3.2.0.js"></script>
<script src="js/scripts.js"></script>
<title>Pig Latin</title>
</head>
<body>
<div class="container">
<form id="form1">
<h1>Pig Latin Translator</h1>
<div class="form-group well">
<label for="input">Enter a sentence</label>
<input type="text" class="form-control" id="input">
</div>
<button type="submit" class="btn bg-info">Translate</button>
<br>
</form>
<div id="result-div" class="well">
<h3>Here is the result</h3>
<h4 id='result'><h4>
<img src="img/pig.png" alt="cute pig" />
</div>
</div>
</body>
</html>