-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
32 lines (31 loc) · 1.45 KB
/
index.php
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
<?php require_once 'init.php'; ?>
<html>
<head>
<title>Pokésearch | Home</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<?php require_once 'layouts/favicon.php'; ?>
</head>
<body>
<?php require_once 'layouts/mininav.php'; ?>
<div class="content">
<?php require_once 'layouts/header.php'; ?>
<span class="content-body">
<div class="text-block">
<p>Hello, Welcome to <strong>Pokésearch</strong>, an advanced
information lookup page that allows you to find any information
that you want relating to the Pokémon franchise!</p>
<p>You can search information about Pokémon, their evolution chains,
specific stuff about the Pokémon games, items and so much more!</p>
<p>To start, click on one of the links above or type in whatever you're
looking for in the search bar!</p>
<p><i><b>Note:</b></i></p>
<p><i>This site is still in development. This site will
continue to be updated as time goes on. There are still a lot of missing
info that is planned to be inserted. Please keep checking for updates!</i></p>
</div>
</span>
</div>
<?php require_once 'layouts/footer.php'; ?>
</body>
</html>