I had tried doing it with a basic unordered list, and it wasn't coming out like I wanted it to- but I might need to go back and set some different styles and see how that works out. It was the bullets of the <ul> tag that I didn't like- but maybe there's a way to make it non-bulleted.
Basically, it's a calendar type-schedule.
First heading is the semester/year
Second heading is the date/time/location
Third heading is the speakers names/titles of the talk.
From playing around with formatting, there needs to be at least a blank line between the semester/year and the date/time/location as well as between the date/time/location and the names/talk titles, or it starts to look overly crowded.
The way I have it now, I have the first headings as links to a javascript:unhide command I coded in that opens a list of all of the dates/times/locations and speakers. Within each, I'm using a structure that looks like this:
Code:
<p style="margin-left:5%;text-indent:-5%><strong>Date/TimeLocation</strong>
<br />
<br />Speaker, title
<br />Speaker, title
<br />Speaker, title
So that it breaks out looking like this:
Date/Time/Location
Speaker, Title
Speaker, Title
Speaker, Title
It's working OK for now, especially with the javascript:unhide command to cut down from several dozen listings to a few visible at a time. For future ease of updating, I can code in Lenas's suggestion of adding style categories for each of the categories to clean up the code a bit.
My next item is to tackle getting a well-organized photo gallery... And it would be nice to do some-sort of a filmstrip-style banner of randomly selected pictures if I can figure out how.