generated from 9000HAL/bootstrap-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (26 loc) · 1.08 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
<html>
<head>
<title>MAGIC 8 BALL</title>
<link href='https://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="css/styles.css">
</head>
<body>
<div class="page">
<header>
<h1>Gabe's "BTW" MAGIC <span>8</span> BALL (v.1)</h1>
</header>
<div class="ball">
<img id="8ball" src="https://s3.amazonaws.com/media.skillcrush.com/skillcrush/wp-content/uploads/2016/09/magic8ballQuestion.png">
<p id="answer" class="answer">THIS IS WHERE THE ANSWER GOES</p>
</div>
<div class="button">
<button id="questionButton">ASK ME ANYTHING </button>
</div>
<footer>
<p><a href="https://github.com/9000HAL">©2023 github.com/9000HAL</a></p> </footer>
<script type="text/javascript" src="myscript.js"></script>
</div>
</body>
</html>