-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (51 loc) · 2.16 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
56
57
58
59
60
61
<!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>GiphyIt</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<style>
.jumbotron{background-color: coral;}
h1{font-weight: 900;}
</style>
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Its Giphy Cars!!</h1>
<p id="instruction">Enter your favorite car name.
A car button will be created.
Select car button and 10 car gifs buttons will appear.
If you select a car gif.....
then watch the car gif GGGGGGGGOOOOOOOO!!!! </p>
</div>
</div>
<div class="container">
<div id="car-view"></div>
<br>
<!-- Add a form to your page
takes the value from a user-input box
Id= user-car
and adds it into your `cars` array -->
<form id="user-car">
<label for="user-input">Add a Car!</label>
<input type="text" id="user-input"><br>
<!-- submit and clear button -->
<input id="add-car" type="submit" value="Submit">
<button class="btn btn-default" id="clear-cars">
<i class="fa fa-trash"></i> Clear Cars</button>
</form>
<div id="car-btns-view"></div>
<br>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/javascript/app.js" type="text/javascript"></script>
</body>
</html>