-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (39 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pic A Pun!</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="index.css">
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div class="center-block">
<img src = "Pic-a-Pun Logo.png" height=35% width=35%> </img>
<h3>Enter image URL:</h3>
<div class = "row">
<div class="col-sm-4 col-sm-offset-4">
<div class="input-group">
<input type="text" class="form-control" id = "imgurl" placeholder="Image URL">
<span class="input-group-btn">
<button class="btn btn-success" onclick ="run($('#imgurl').val())">Get Pun!</button>
</span>
</div>
</div>
</div>
<br />
<br />
<img id="background-img" src="" >
<h4 id="ide">You can pick your friends. You can pick your nose. But, can you PicAPun?</h4>
<br />
<br />
<br />
<div id="tags"></div>
<br />
<br />
<br />
<small style=" text-align: center;"> Puns Copyright 1996-2011 <a href="http://www.punoftheday.com">Pun of the Day</a></small>
</div>
</body>
</html>