-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (46 loc) · 1.89 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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">
<title>GifTastic</title>
<!-- bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- my css -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- font awesome -->
<script src="https://kit.fontawesome.com/02403185ac.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="d-flex flex-row">
<!-- Rendered buttons appear here -->
<div id="buttons-view"></div>
</div>
<div class="d-flex flex-row-reverse mr-3 mb-3">
<form id="topic-form">
<label for="topic-input"></label>
<input type="text" id="topic-input" placeholder="add an animal">
<br>
<!-- Button triggers new gif button to be added -->
<input class="btn btn-info empty mt-3" id="add-gif" type="submit" value="submit">
</form>
</div>
<!-- Gifs go here -->
<div class="container main">
<div class="d-flex align-content-between flex-wrap ml-5" id="gifs-go-here"></div>
</div>
<!-- my footer with links -->
<nav class="navbar fixed-bottom navbar bg-info justify-content-center">
<a class="navbar-brand nav-link copy" href="https://stacyholtz6.github.io/portfolio/index.html">©Stacy
Holtz</a>
<a class="nav-link" href="https://github.com/stacyholtz6"><i class="fab fa-github"></i></a>
</nav>
<!-- jQuery JS -->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.bundle.min.js"></script>
<!-- link to javascript -->
<script src="assets/javascript/app.js"></script>
</body>
</html>