Inline css to make buttons appear on specific list in IE

Hi all this works showing the button on the li in firefox and google browsers but nada on IE. Why is this please? Thank you

<p style="width:98%;">The support of:
<ul style="width:91%;list-style-type:disc;"><li style="list-style-type:disc;"><font style="text-decoration: underline;font-weight:bold;">1st partner</font> info info info info info info </li>
</ul></p>

What ‘button’?

The list buttons - bullet points that is the phrase I’m looking for :slight_smile:

I don’t know why IE wouldn’t get that right, but it might be down to the illegal nesting of elements - you can’t include a <ul> within a <p> - you have to close the </p> before you start the <ul>.

And just another point:
<font style="text-decoration: underline;font-weight:bold;"> is awful. For a start, you should be using a semantically appropriate element, like <strong>, to emphasise text rather than the meaningless <font>, and then you won’t need to declare a bold font because it comes as part of the package. For a second, good practice is to never underline text unless it’s a clickable link - if text is underlined, people will assume it’s a link and try to click on it.

Yeah sorry about that I was just doing stuff inline I know that font is 1990ish