-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimagequote.html
More file actions
59 lines (37 loc) · 2.58 KB
/
imagequote.html
File metadata and controls
59 lines (37 loc) · 2.58 KB
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
<!DOCTYPE HTML>
<html>
<head>
<title>
</title>
<!--Links to Bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Links to Bootstrap Javascript-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<!--Links to CSS Stylesheets-->
<link href="https://fonts.googleapis.com/css?family=Dosis:400,700" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<h1>PICK ME UP .com</h1>
<div id="app" v-on:load="motivateUser">
<div style="text-align: center;"><div v-on:click="randomComic" v-on:click="motivateUser" class="buttonrandom">Random</div></div>
<div class="container">
<div v-on:click="previousImage" v-on:click="motivateUser" class="buttonleft">Previous</div>
<div v-on:click="nextImage" v-on:click="motivateUser" class="buttonright">Next</div>
<img v-bind:src="current.download_url">
<div class="centered"><p class="results">{{ results }}</p></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.2/dist/vue.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="script.js"></script>
<footer class="page-footer fixed-bottom">
<nav class="navbar navbar-expand-lg sticky-top navbar-light bg-light " style="background: rgba(0,0,0,0.4); height: 60px;">
<a href="https://github.com/tbean79/creativeproject3.git">Github Repo</a>
</nav>
</footer>
</body>
</html>