aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--about.html35
-rwxr-xr-xindex.html4
-rw-r--r--pokebot.html4
-rw-r--r--typer.html35
4 files changed, 74 insertions, 4 deletions
diff --git a/about.html b/about.html
new file mode 100644
index 0000000..99f388c
--- /dev/null
+++ b/about.html
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML>
+<!-- The style is based from the ACN website !-->
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width">
+ <title>PokeWorld | Home</title>
+ <link rel="stylesheet" href="./css/style.css">
+ </head>
+ <body>
+ <header>
+ <div class="container">
+ <div id="branding">
+ <h1>PokeWorld</h1>
+ </div>
+ <nav>
+ <ul>
+ <li><a href="index.html">Home</a></li>
+ <li><a href="pokebot.html">Pokebot</a></li>
+ <li><a href="typer.html">Typer</a></li>
+ <li class="current"><a href="#">About</a></li>
+ </ul>
+ </nav>
+ </div>
+ </header>
+ <div class="container">
+ <h1>About</h1>
+ <h2>Learn about us.</h2>
+ <p>Hi, I am dummy developer text.</p>
+ </div>
+ <footer>
+ <p>PokeWorld by: Alee, TheEdgeNK and jtshieh, Copyright &copy; 2018</p>
+ </footer>
+ </body>
+</html>
diff --git a/index.html b/index.html
index 7d64ed9..6a85c22 100755
--- a/index.html
+++ b/index.html
@@ -17,8 +17,8 @@
<ul>
<li class="current"><a href="#">Home</a></li>
<li><a href="pokebot.html">Pokebot</a></li>
- <li><a href="#">Typer</a></li>
- <li><a href="#">About</a></li>
+ <li><a href="typer.html">Typer</a></li>
+ <li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
diff --git a/pokebot.html b/pokebot.html
index eea0c37..f4e5d45 100644
--- a/pokebot.html
+++ b/pokebot.html
@@ -17,8 +17,8 @@
<ul>
<li><a href="index.html">Home</a></li>
<li class="current"><a href="#">Pokebot</a></li>
- <li><a href="#">Typer</a></li>
- <li><a href="#">About</a></li>
+ <li><a href="typer.html">Typer</a></li>
+ <li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
diff --git a/typer.html b/typer.html
new file mode 100644
index 0000000..3a536fb
--- /dev/null
+++ b/typer.html
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML>
+<!-- The style is based from the ACN website !-->
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width">
+ <title>PokeWorld | Home</title>
+ <link rel="stylesheet" href="./css/style.css">
+ </head>
+ <body>
+ <header>
+ <div class="container">
+ <div id="branding">
+ <h1>PokeWorld</h1>
+ </div>
+ <nav>
+ <ul>
+ <li><a href="index.html">Home</a></li>
+ <li><a href="pokebot.html">Pokebot</a></li>
+ <li class="current"><a href="#">Typer</a></li>
+ <li><a href="about.html">About</a></li>
+ </ul>
+ </nav>
+ </div>
+ </header>
+ <div class="container">
+ <h1>Typer</h1>
+ <h2>An automatic key-presser tool.</h2>
+ <p>Hi, I am dummy developer text.</p>
+ </div>
+ <footer>
+ <p>PokeWorld by: Alee, TheEdgeNK and jtshieh, Copyright &copy; 2018</p>
+ </footer>
+ </body>
+</html>