How can I define and use generalized html?
Hello, I've given up attempting to figure out how to do something in HTML. Perhaps, someone here can "solve" this problem. My skill-level is semi-ancient programmer.
I need to publish a meetings schedule comprising 7 days, where each day has a list of locations, with information, and many of the locations will be in multiple days. The user selects a day and the locations-list is displayed for that day.
Location X may appear in 5 distinct lists. My programmer's mind tells me that I want to put the location-data for X (and any) location in one place and reference that information when I display the location-list for the subject day.
The html that displays X's location-data should be in one place but I can't quite figure out how to define and reference the generalized HTML.
I know I can do this with Javascript, but I am NOT going to do this with Javascript or PhP or anything other that HTML because of compatibility issues. I've been using CSS with good results (no use of "nth-child") but I can't figure out how to display ("imbed") the generalized location html (defined in one place). I've tried to store it in a file but I couldn't figure out how to "bring in" (insert) the html and get that to work. I know that <object> won't work. I couldn't get <iframe> to work.
I will appreciate any help at all.