-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·56 lines (47 loc) · 1.41 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
<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"
/>
<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">
<p id="answer" class="answer" align="center">
THIS IS WHERE THE ANSWER GOES
</p>
<img
id="8ball"
alt="Magic 8 Ball Default Image"
src="https://s3.amazonaws.com/media.skillcrush.com/skillcrush/wp-content/uploads/2016/09/magic8ballQuestion.png"
/>
</div>
<br /><br />
<div class="button">
<button id="questionButton">ASK ME ANYTHING</button>
</div>
<footer>
<p>
©
<span id="copyYear"></span>
| Arzola Solutions, LLC
</p>
</footer>
<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>
<script type="text/javascript" src="script.js"></script>
<script>
document.querySelector(
"#copyYear"
).innerText = new Date().getFullYear();
</script>
</div>
</body>
</html>