HTML

Ken Webb 2010-03-01T20:05:04Z

Hyper Text Markup Language (HTML) is "the predominant markup language for web pages". Basic HTML pages consist of HTML elements, organized into a hierarchical structure.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/strict.dtd">
<html>
  <head>
    <title>Primordion</title>
  </head>
  <body bgcolor="#d8e8f8">
    <h1 align="center">Primordion</h1>
    <p>Primordion provides computer consulting services,
       and hosts several related open source software projects.</p>
    <p>These projects are managed and architected by
      <a href="consult.html">
        <strong>Ken Webb</strong>
      </a>.
    </p>

    <h2>Consulting</h2>
    <p>Primordion ...</p>
    <h2>Open Source Projects</h2>
    <ul>
      <li>
        <a href="Xholon/index.html">
          <strong>Xholon</strong>
        </a>
      </li>
      <p>The Xholon project ...</p>
      <li>
        <a href="Cellontro/index.html">
          <strong>Cellontro</strong>
        </a>
      </li>
      <p>Cellontro ...</p>
    </ul>
  </body>
</html>

Every Xholon application is organized in exactly the same way. Xholon can interwork with HTML through the open source Cobra and Lobo projects.

return to main page