Building files and structure
This commit is contained in:
commit
3d7dcf94e1
1
README
Normal file
1
README
Normal file
@ -0,0 +1 @@
|
|||||||
|
This will be a web-based Magic the Gathering (MTG) card database.
|
0
css/style.css
Normal file
0
css/style.css
Normal file
15
includes/menu.php
Normal file
15
includes/menu.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/menu.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li><a href="index.php">Home</a></li>
|
||||||
|
<li><a href="library.php">Card Library</a></li>
|
||||||
|
<li><a href="decks.php">Current Decks</a></li>
|
||||||
|
<li><a href="forsale.php">Cards for Sale</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</body>
|
||||||
|
</html>
|
15
index.php
Normal file
15
index.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/style.css" />
|
||||||
|
<title>TFMM's MTG Database</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class=header>
|
||||||
|
<h1>TFMM's MTG Database</h1>
|
||||||
|
<?php include("includes/menu.php");?>
|
||||||
|
</div>
|
||||||
|
<div class=content>
|
||||||
|
<p>See the links in the menu for more resources. I'll have my current library, cards for sale, and current decks listed eventually.</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user