-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (78 loc) · 3.29 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Saffron Poke Gym</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="styles.css"/>
</head>
<body>
<div id="main">
<div id="mainbox">
<div id="nav">
<div id="big-dot" class="animated 5s flash"></div>
<div class="dot one animated 5s flash"></div>
<div class="dot two animated 5s flash"></div>
<div class="dot three animated 5s flash"></div>
</div>
<div id="mainImg">
<h1 class="animated 3s zoomIn ">WELCOME</h1>
<h1 class="animated 3s zoomIn ">TO</h1>
<h1 class="animated 3s zoomIn ">SAFFRON GYM</h1>
<img id="badge"src="marsh-badge.png" alt="">
<p id = "caption">LOADING...</p>
</div>
<div id="btn">
<div id="btnBlack"></div>
<button id="btnYellow">left</button>
<button id="btnPink">right</button>
</div>
<div id="history1">
<ul> <h1>Saffron Gym</h1>
<li>Make pokemon great again!</li>
<li>Currently owned by Kanye!</li>
<li>Last scanned: approx. 3 days ago!</li>
<li>Gym Prestige: 9,000+</li>
</ul>
</div>
</div>
<div id="secondbox">
<div id="secondImg">
</div>
<div id="history2">
<h1 id="ourHistory">Our History</h1>
<p>The Saffron Gym (Japanese: ヤマブキジム Yamabuki Gym) is the official Gym of Saffron City. It is based on Psychic-type Pokémon. The Gym Leader is Sabrina. Trainers who defeat her receive the Marsh Badge.</p>
</div>
</div>
</div>
<!-- MODAL -->
<div class="modal fade " id="important-msg" tabindex="-1" role="dialog" aria-labelledby="important-msg-label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h2 id="modal-title" id="important-msg-label" class="modal-title"></h2>
</div>
<!-- Modal body -->
<div class="modal-body">
<div id = "modalDiv">
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal" id="close">Send back!</button>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.2.0/anime.js"></script>
<script src="trainer.js"></script>
<script src="main.js"></script>
</body>
</html>