TNEW - Contribution text - html for bullet points?

Hello, fairly new user here and hoping this is an appropriate place for this question. Please keep in mind I am not skilled an html, rather I have some skill in google search.

I'm having trouble creating an unordered list with bullet points for our TNEW contribution pages. I've tried a couple of variations of html but I still get just floating text and no bullet points. Does anyone have any idea what my issue is? Below is the coded paragraph. Any guidance is appreciated thank you. 

<UL>

<li> Lorem ipsum dolor sit amet</li>
<br /> <li>Lorem ipsum dolor sit amet</li>
<br />
<li>ILorem ipsum dolor sit amet</li>
<br />
<li> Lorem ipsum dolor sit amet
<br />
<br />Lorem ipsum dolor sit amet</li>

</body>

  • You need to close with a </ul> tag before the </body> tag. Also, your final two line items would share one bullet, the way you’ve got it here. Also, with <ul><li></li></ul> you don’t need to use <br>.
     
    Lucie
     


    Lucie Spieler
    IT Dev. & Training Manager 



    Doral Center

    8390 NW 25th Street | Miami, Florida 33122
    Direct: 305.403.3291 | Box Office: 800.741.1010
       


     

  • FYI a clever trick (and you can do this in the TNEW editor or even in the forum comments editor here!) is to build elements in a WYSISYG editor, then look at the structure in the HTML view.

    So here you can use but bullet point button below to create a list:

    • bullet
    • point
    • list
    • created here

    Then go to Tools > Source Code and see how it actually coded:

    <ul>
    <li>bullet</li>
    <li>point</li>
    <li>list</li>
    <li>created here</li>
    </ul>