-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (59 loc) · 2.84 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" type="image/png" href="assets/img/magic-wand-tab-icon.ico" />
<!-- Font Awesome CDN -->
<script src="https://use.fontawesome.com/b1259319ef.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- My style sheet -->
<link rel="stylesheet" href="assets/style.css">
<!-- Font Families -->
<style>
@import url('https://fonts.googleapis.com/css?family=Chelsea+Market|Creepster|Finger+Paint|Trade+Winds');
</style>
</head>
<body>
<header>
<div class="container-fluid headerBgImg">
<div class="container-fluid">
<!-- title -->
<div class="row justify-content-center">
<div class="d-flex justify-content-center heading-container">
<i id="musicBtn" class="fa fa-music" aria-hidden="true"></i>
<h4 class="sub-title">Drag an image to the Crystal ball for your fortune <small>(< 4mb)</small></h4>
<img class="img-fluid title" src="assets/img/title.png" alt="Turing's Crystal Ball">
</div>
</div>
<div class="row">
<h3 class="message-pretext">Hmmm... I can see it, the vision <i class="fa fa-hand-o-down" aria-hidden="true"></i></h3>
</div>
</div>
<!-- dropzone -->
<div class="dropzone" id="dropBox">
<img class="dropzone dropImg" id="crystalImg" src="assets/img/giphy-downsized.gif">
</div>
</div>
</header>
<main class="response-container d-flex">
<div class="container d-flex justify-content-center">
<div class="col-lg-10 col-md-8 col-sm-12">
<!-- pretext here -->
<div class="row">
<div class="mood message-title" id='moodDiv'></div>
<div class="message-text" id='fortuneText'></div>
</div>
</div>
</div>
</main>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<!-- MY JS FILE -->
<script src="assets/main.js" charset="utf-8"></script>
</body>
</html>