-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
48 lines (38 loc) · 1.12 KB
/
popup.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
<!DOCTYPE html>
<html>
<header>
<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>Best of Shrek!</title>
<script src="jquery-3.3.1.js"></script>
<script src="popup.js"></script>
</header>
<body>
<style>
.quote-bubble{
margin-left: 170px;
position: relative;
}
#shrek-picture{
margin-top: -50px;
margin-left: 40px;
}
.test {
position: absolute;
top: 28px;
left: 20px;
width: 140px;
}
</style>
<nobr>Version 2.0</nobr>
<div class="quote-bubble">
<img src="quote-bubble.png" width="180">
<div class="test"><span id="quote">Donkae!</span></div>
</div>
<br>
<img id="shrek-picture" src="Shrek.png">
<br>
<button>Next Quote!</button>
</body>
</html>