-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (49 loc) · 1.7 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
<!doctype html>
<html lang="en">
<head>
<title>Giphy Homework Bon Crowder</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible"
content="ie=edge">
<meta property="og:url"
content="https://mathfour.github.io/GifTastic/"/>
<meta property="og:type"
content="application/javascript"/>
<meta property="og:title"
content="Colorful GifTastic"/>
<meta property="og:description"
content="Homework submission by Bon Crowder to The Houston Coding Bootcamp Powered by UT Austin"/>
<meta property="og:image"
content="images/GifTasticOGImage.png"/>
<link rel="icon"
type="image/png"
href="images/BonCrowderFaviconWhiteBackground.png">
<link rel="stylesheet"
type="text/css"
href="css/giphy.css">
</head>
<body>
<!-- Div to hold all the buttons with color names on them -->
<div id="colorButtons">
</div>
<!-- Form for the color inputs -->
<form id="colorForm">
<label for="colorInput">Type in another color:</label>
<input type="text"
id="colorInput"
value="">
<input type="submit"
id="addColorButton"
value="Submit">
</form>
<!-- Div to hold the images rendered when button is clicked -->
<div id="colorImages">
<br>
wait for it...
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="javascript/giphy.js"></script>
</body>
</html>