I am currently doing the markup for a website. I have got to the openingHours
.
The problem I ran into is that the days and hours are in different elements.
How should one go about marking it up and linking the day of the week to the hours that are corresponding?
The code is as follows:
<h2>Hours</h2>
<div id="hours">
<ul>
<li>Mon-Wed</li>
<li>Thursday</li>
<li>Friday</li>
<li>Saturday</li>
<li>Sunday</li>
</ul>
<ul>
<li>9:00 AM - 6:00 PM</li>
<li>9:00 AM - 8:00 PM</li>
<li>9:00 AM - 6:00 PM</li>
<li>10:00 AM - 4:00 PM</li>
<li>Closed</span></li>
</ul>
</div>