The Current


I am putting together the music pages on the site.


Variations on Zelda's Theme is finished. I am finalizing a couple things, and will be releasing it soon.


I have begun working on a mobile site. This project will also result in graphical elements being added to the desktop site.


My drop-down navigation menu is now functional.


Pocket Beethoven for solo piano is now complete! Engraving will begin shortly.

Marking up a Real Page

The goal of this tutorial is to show you some how to build a simple web page using some basic elements. We will be adding text, links, and images. Unlike "Hello, world," we will be paying close attention to creating rich, semantic content. After all, HTML is meant to provide meaningful, well-structured content, not to make it look pretty. That's what CSS is for - and a whole different set of tutorials. End Result.


The Heading Elements

One of the first things our page should have are headings. These help to organize the content of the page, and they are one of the things search engines look at to determine what the page is about. Therefore, it is important that the content of these tags are meaningful.

Heading elements come in six levels, from h1 to h6. The lower the number, the more important the heading. You don't have to use all the levels, but you should start with h1, and not skip any. Remember, we aren't using these headings to style the text, just to provide meaning behind the text.

Previous Lesson: The Body | Next Lesson: Text and Links

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>Classical Music</title>
</head>
<body>
  <h1>Classical Music</h1>
  <h2>Baroque Era</h2>
  <h2>Classical Era</h2>
  <h2>Romantic Era</h2>
</body>
</html>