simple help needed | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

simple help needed

so in my experiences as you can see in my code i want to add a list of things i did in the company on the right side i want to put the list in bulletin form can someone help me with this issue thank you happy coding https://code.sololearn.com/WH9wjIFk0Uz5/?ref=app

22nd Jan 2022, 2:51 AM
tberners
tberners - avatar
3 Answers
0
You can get bulleted lists with unordered list tag (ul), instead of using one table for each item. Lists allow other objects inside list items, so you can have line breaks, paragraphs, CSS styling, and even tables and more lists as items. So it shouldn't be hard to get a bulleted list with the same formatting as you have now.
22nd Jan 2022, 3:13 AM
Emerson Prado
Emerson Prado - avatar
0
could you give me an example on how that would look <table> <tr> <td><b>Pizza Hut</b></td> </tr> <tr> <td><small>Cook/ Food Prep/ Dishwasher</small></td> </tr> <tr> <td>March 2015 - April 2016</td> </tr> </table> Emerson Prado
22nd Jan 2022, 3:16 AM
tberners
tberners - avatar
0
Something like <ul> <li> <b>Pizza Hut</b><br> <small>...</small><br> ... </li> <li> ... </li> ... </ul>
23rd Jan 2022, 1:30 PM
Emerson Prado
Emerson Prado - avatar