I am looking to have 7 lists displayed side by side, each with a unique styled header title. I want the lists to be neatly organized under their respective titles, including the bullets. I attempted to use text-indent for this purpose, but it seems that it's not compatible with IE8. Below is the code I came up with as a beginner web developer, however, I'm encountering validation errors. Even though I know having styled headers directly under the UL tag is not standard practice, it's the only way I could achieve the desired clean layout. Can someone help me identify what mistake I am making?
<ul style="width:14%; float:left;">
<span style="font-size: 13px;"><p class="notice">Title 1</p></span>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">aaaaa</span></a></li>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">bbbbb</span></a></li>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">ddddd</span></a></li>
</ul>
<ul style="width:14%; float:left;">
<span style="font-size: 13px;"><p class="notice">Title 2</p></span>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">eeeeee</span></a></li>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">ffffff</span></a></li>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">hhhhhhh</span></a></li>
</ul>
<ul style="width:14%; float:left;">
<span style="font-size: 13px;"><p class="notice">Title 3</p></span>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">iiiiii</span></a></li>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">kkkkkk</span></a></li>
<li><a class="underline2" href="etc etc"><span style="font-size: 10pt; line-height: 14px; color: #616161;">llllllll</span></a></li>
</ul>