-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen2.html
48 lines (48 loc) · 1.47 KB
/
gen2.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Encoding -->
<meta charset="UTF-8" />
<!-- CSS Link -->
<link rel="stylesheet" href="src/styles/styles.css" />
<!-- Page Title -->
<title>Pokemon: Generation II</title>
<!-- Meta Tags -->
<meta name="title" content="Pokemon: Generation II" />
<meta name="description" content="Simple Pokemon database" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
property="og:url"
content="https://carsonwltz.github.io/Pokemon-Database"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Pokemon: Generation II" />
<meta property="og:description" content="Simple Pokemon database" />
<meta
property="og:image"
content="images/favicon/apple-icon-precomposed.png"
/>
<meta name="theme-color" content="#ffffff" />
<!-------------------------------------------------------------------------------->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<div class="top">
<div class="intro-image">
<img src="src/images/International_Pokémon_logo.svg" />
</div>
</div>
<main class="main">
<div id="main-search">
<input
type="search"
id="main-search-bar"
placeholder="Search a pokemon..."
/>
</div>
<div id="main-pokemon"></div>
</main>
<script src="src/scripts/gen2.js"></script>
<script src="src/scripts/search.js"></script>
</body>
</html>