-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
34 lines (31 loc) · 1.06 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
<!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">
<title>Zombie Translator</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<script src="js/vendors/jquery.min.js"></script>
<script src="js/vendors/bootstrap.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div class="container">
<div class="row well">
<div class="col-md-6">
<form id="english-to-zombie-form">
<label for="english">English</label>
<textarea class="form-control" id="english"></textarea>
</form>
</div>
<div class="col-md-6">
<form id="zombie-to-english-form">
<label for="zombie">Zombie</label>
<textarea class="form-control" id="zombie"></textarea>
</form>
</div>
</div>
</div>
</body>
</html>