-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.html
46 lines (31 loc) · 1.15 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
<!doctype html>
<html>
<head>
<title>MAGIC 8 BALL</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700|Montserrat:400,700' rel='stylesheet' type='text/css'>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="page">
<header>
<h1>MAGIC <span>8</span> BALL</h1>
</header>
<div class="ball" style="position:relative; width:80%" >
<p id="answer" class="answer">
THIS IS WHERE THE ANSWER GOES
</p>
<img id="8ball" src="https://s3.amazonaws.com/media.skillcrush.com/skillcrush/wp-content/uploads/2016/09/magic8ballQuestion.png" alt="Magic 8 Ball">
</div>
<br><br>
<div class="button" style="position:relative; width:80%">
<button id="questionButton">ASK ME ANYTHING </button>
</div>
<footer>
<p>© Skillcrush 2016</p>
</footer>
<script type="text/javascript" src="script.js"></script>
</div>
</body>
</html>