Unit 4 ยท Seasonal Calendar
Stage 3 of 7
Unit 4 ยท Stage 3
Your four cards are named and colored. In this stage you fill each card with the real content: the seasonal activities, practices, and foods that Tribal nations in this region live by across the year. You will also add a subtitle under the main heading. Play in the editor, or press ๐ Type it with me to be guided. (pause on a highlighted word to see what it does)
.season card already has a heading and a language line. Now you add a <ul> list of activities inside each one, and a subtitle line under the <h1>.The cards are named and colored. Now you add the actual cultural content: the seasonal activities, practices, and foods that shape the year across this region.
Add an unordered list inside the Spring card. First add the CSS that styles the list, then add the <ul> to the Spring HTML.
list-style: noneul. The clean text rows work better here than standard dots.color: rgba(255, 255, 255, 0.9)border-bottom: 1px solid rgba(255, 255, 255, 0.2)0.2 opacity makes it very faint, just enough to separate items without distracting..season-activities li:last-child { border-bottom: none }<style> tag, then add a <ul class="season-activities"> with four <li> items inside the Spring card. Use the examples below, then press โถ Run..season-activities {
list-style: none;
margin: 0;
padding: 0;
}
.season-activities li {
color: rgba(255, 255, 255, 0.9);
font-size: 14px;
padding: 6px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
line-height: 1.5;
}
.season-activities li:last-child {
border-bottom: none;
}
<div class="season spring">
<h2>Spring</h2>
<span class="season-name-native">Ziigwan (Ojibwe) | Wetu (Dakota)</span>
<ul class="season-activities">
<li>Maple sugaring (ziinzibaakdoke)</li>
<li>Fish runs return to rivers</li>
<li>Gathering medicines and plants</li>
<li>Setting up spring camps</li>
</ul>
</div>
Apply the same pattern to the other three cards. Each one gets a <ul class="season-activities"> with the activities of that season. The CSS you already wrote styles all four lists.
<ul class="season-activities"> to the Summer, Fall, and Winter cards. Use the examples below, then press โถ Run.<div class="season summer">
<h2>Summer</h2>
<span class="season-name-native">Niibin (Ojibwe) | Bdoketu (Dakota)</span>
<ul class="season-activities">
<li>Berry picking and preserving</li>
<li>Gathering medicines in full growth</li>
<li>Community ceremonies and gatherings</li>
<li>Fishing and drying fish</li>
</ul>
</div>
<div class="season fall">
<h2>Fall</h2>
<span class="season-name-native">Dagwaagin (Ojibwe) | Ptanyetu (Dakota)</span>
<ul class="season-activities">
<li>Wild rice harvest (manoomin)</li>
<li>Deer hunting season begins</li>
<li>Drying and storing foods for winter</li>
<li>Preparing winter camps</li>
</ul>
</div>
<div class="season winter">
<h2>Winter</h2>
<span class="season-name-native">Biboon (Ojibwe) | Waniyetu (Dakota)</span>
<ul class="season-activities">
<li>Storytelling season (stories are told only in winter)</li>
<li>Ice fishing on frozen lakes</li>
<li>Trapping and preparing hides</li>
<li>Indoor community gatherings</li>
</ul>
</div>
What value did you give list-style to remove the default bullet points? Type it, then press Submit to unlock the last step.
Add a subtitle line below the <h1> to give the calendar some context. First add the CSS, then add the paragraph.
margin-top: -16pxh1 so they read as a visual pair rather than two separate lines.color: #555h1 above it. This builds visual hierarchy: the heading is darkest and most important, the subtitle is lighter and supporting..calendar-subtitle rule inside <style>, then add a <p class="calendar-subtitle"> right below the <h1>. Use the examples below, then press โถ Run..calendar-subtitle {
text-align: center;
font-size: 15px;
color: #555;
margin-top: -16px;
margin-bottom: 28px;
}
<p class="calendar-subtitle"> Traditional seasonal knowledge of Tribal nations in the region </p>
Experiment, then set it the way you like it.
To complete Stage 3, each season card needs an activity list and the page needs a subtitle. Press Check my work when you are ready. This opens Stage 4 and lets your teacher see that you finished.