The Tree of Widsdom

智慧の樹

The minimal template for a web page


In making a blog, all our files will be in HTML—a mix of the textual content people actually read with the HTML elements (code) that arrange the visual bed of that content. So we should expect our basic blog template to bear some resemblance to this:

<!DOCTYPE html>
<html>
  <head>
    <title>^title^</title>
  </head>
  <body>
    <p>^text^</p>
  </body>
</html>