forked from Tyrannofloresrex/PokeBatEx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
33 lines (30 loc) · 1.7 KB
/
gallery.html
File metadata and controls
33 lines (30 loc) · 1.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Poké Gallery</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="https://unpkg.com/nes.css/css/nes.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/gallery.css">
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon">
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
</head>
<body>
<!-- Scrolling banner -->
<marquee behavior="scroll" direction="left" class="banner" style="color: rgb(233, 236, 45);"><span><i class="nes-pokeball"></i></span><font size="12"> Welcome to the Poké Gallery! </font><span><i class="nes-pokeball"></i></span></marquee>
<!-- Outer Div with Title -->
<div class="nes-container with-title is-centered" id="gallery-border">
<p class="title">Choose your Pokémon!</p>
<div class="nes-container gallery">
</div>
<!-- Menu Button locations -->
<div class="nes-container is-rounded is-dark" id="button-box">
<a class="nes-btn menu-button" href="battle-win.html" id="battle-button">Battle!</a>
<button type="button" class="nes-btn is-warning menu-button" id ="clear-button">Clear Pokémon Storage</button>
<a class="nes-btn is-primary menu-button" href="index.html" id="home-button">Home</a>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script src="assets/js/scriptGallery.js"></script>
</body>
</html>