-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.35 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
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/style.css" type="text/css">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="row margin">
<div class="col-md-6 offset-md-3">
<!--Will hold animal buttons -->
<div id="animalButtons"></div>
<!--For for creating new buttons -->
<form id="animal-form">
<label for="animal-input">Add an animal! Or whatever I guess?</label>
<input type="text" id="animal-input">
<button id="addAnimal" type="submit" class="btn btn-success">submit</button>
</form>
<!-- Will hold the animal gifs -->
<p>Click the image to run the gif!</p>
</div>
</div>
</div>
<div id="animals" class="card-columns"></div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/app.js"></script>
</body>
</html>