-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.96 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
57
<!DOCTYPE html>
<html>
<head>
<title>Quarantini | The Magic 8 Ball of Boredom</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="./images/favicon.png"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap" rel="stylesheet">
</head>
<body style="margin:0" class="background">
<div id="loader"><img src="./images/favicon.png" width="100px"></div>
<div class="container animate-bottom" style="display:none;">
<div class="row logo">
<div class="col-sm-12">
<a href="#"><img width="100%" src="images/logo.png"/></a>
</div>
</div>
<div class="row content">
<div class="col-md-4 right" align="center">
<a href="drink.html"><img src="images/pngwave.png" width="250px"/>
<div class="centered">make me a <br>drink</div></a>
</div>
<div class="col-md-4 left" align="center">
<a href="joke.html"><img src="images/pngwave.png" width="250px"/>
<div class="centered">tell me a <br>joke</div></a>
</div>
<div class="col-md-4 right" align="center">
<a href="bored.html"><img src="images/pngwave.png" width="250px"/>
<div class="centered">give me<br> something <br>to do</div></a>
</div>
</div>
<div class="row content">
<div class="col-md-4 left" align="center">
<a href="quote.html"><img src="images/pngwave.png" width="250px"/>
<div class="centered">give me <br>inspiration</div></a>
</div>
<div class="col-md-4 right" align="center">
<a href="movie.html"><img src="images/pngwave.png" width="250px"/>
<div class="centered">pick a movie <br>for me</div></a>
</div>
<div class="col-md-4 left" align="center">
<a href="predict.html"><img src="images/pngwave.png" width="250px"/>
<div class="centered">predict when <br>the quarantine <br>will end</div></a>
</div>
</div>
</div>
<footer style="display:none;">
<p style="font-size:20px">© 2020 Nicole O'Bomsawin</p>
</footer>
</body>
<script
src="https://code.jquery.com/jquery-3.5.0.js"
integrity="sha256-r/AaFHrszJtwpe+tHyNi/XCfMxYpbsRg2Uqn0x3s2zc="
crossorigin="anonymous"></script>
<script src="script.js"></script>
</html>