Parts that Build the Page

Iroquois Constitution

Starting File (1.php)

<!DOCTYPE html>
  <html>
    <head>
      <title>The Great Binding Law, Gayanashagowa (Constitution of the Iroquois Nations)</title>
      <?php include("inc/htmlhead.php"); ?>
    </head>
    <body id="part1">
      <?php include("inc/header.php"); ?>
      <?php include("inc/nav.php"); ?>
      <main>
        <?php include("inc/content1.php"); ?>
      </main>
      <?php include("inc/footer.php"); ?>
    </body>
  </html>

HTML Head Content - htmlhead.php

<meta charset="utf-8"/>
  <link rel="stylesheet" href="./styles/site.css" />
  <script src="scripts/highlightnavigation.js"> </script>
  

Header - header.php

<header><h1>Constitution of the Iroquois Nations</h1></header>

Navigation - nav.php

<nav>
  <ul id="mainnav">
  <li id="navpart1"><a href="1.php">The Great Binding Law, Gayanashagowa</a></li>
  <li id="navpart2"><a href="2.php">Rights, Duties and Qualifications of Lords</a></li>
  <li id="navpart3"><a href="3.php">Election of Pine Tree Chiefs</a></li>
  <li id="navpart4"><a href="4.php">Names, Duties and Rights of War Chiefs</a></li>
  <li id="navpart5"><a href="5.php">Clans and Consanguinity</a></li>
  <li id="navpart6"><a href="6.php">Official Symbolism</a></li>
  <li id="navpart7"><a href="7.php">Laws of Adoption</a></li>
  <li id="navpart8"><a href="8.php">Laws of Emigration</a></li>
  <li id="navpart9"><a href="9.php">Rights of Foreign Nations</a></li>
  <li id="navpart10"><a href="10.php">Rights and Powers of War</a></li>
  <li id="navpart11"><a href="11.php">Treason or Secession of a Nation</a></li>
  <li id="navpart12"><a href="12.php">Rights of the People of the Five Nations</a></li>
  <li id="navpart13"><a href="13.php">Religious Ceremonies Protected</a></li>
  <li id="navpart14"><a href="14.php">The Installation Song</a></li>
  <li id="navpart15"><a href="15.php">Protection of the House</a></li>
  <li id="navpart16"><a href="16.php">Funeral Addresses</a></li>
  </ul>
  </nav>

Footer - footer.php

<footer>
  Text form prepared by Gerald Murphy (The Cleveland Free-Net - aa300). Distributed by the Cybercasting Services Division of the National Public Telecomputing Network. Rendered into HTML by <a href="mailto:jon.roland@the-spa.com">Jon Roland</a> of the Constitution Society.  (NPTN). Permission is hereby granted to download, reprint, and/or otherwise redistribute this file, provided appropriate point of origin credit is given to the preparer(s), the National Public Telecomputing Network and the Constitution Society.
  <div class="note">
  <p>Additional information about the Iroquois nations and their constitution are available:</p>
  <ul>
  <li><a href="http://www.tuscaroras.com/graydeer/influenc/page1.htm">The Influence of the Great Law of Peace on the the United States constitution:  an Haudenosaunee (Iroquois) Perspective</a></li>
  <li><a href="http://www.ratical.org/many_worlds/6Nations/index.html">The Six Nations:  Oldest Living Participatory Democracy on Earth</a></li>
  <li><a href="http://www.iroquoismuseum.org/">Iroquois Indian Museum</a></li>
  </ul>
  </div>
  </footer>