Advertisement
LivvyAh

MODULAR: Likes & Dislikes 1.0

Apr 4th, 2020 (edited)
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <!-- LIKES AND DISLIKES START
  2. If you want this to be two text boxes side by side instead of lists, delete everything between the two <p></p> tags then write as desired.
  3. Make sure to keep the <p> tags though, <p> is a paragraph tag.
  4. Indented bullet points:
  5. <ul><li>Item</li></ul>
  6. -->
  7. <div class="row">
  8. <!-- LIKES START -->
  9. <div class="col-md-6 col-sm-12 p-2">
  10. <div class="text-light bg-dark p-3">
  11. <div class="text-uppercase d-flex justify-content-between" style="letter-spacing:3px; font-size:20px;">
  12. Likes
  13. </div>
  14. <hr class="bg-white w-100">
  15. <div class="table-responsive p-1">
  16. <p>
  17. <ul>
  18. <li>big long item one that is very big and long</li>
  19. <li>two</li>
  20. <li>three</li>
  21. <li>four</li>
  22. </ul>
  23. </p>
  24. </div>
  25. </div>
  26. </div>
  27. <!-- LIKES END -->
  28. <!-- DISLIKES START -->
  29. <div class="col-md-6 col-sm-12 p-2">
  30. <div class="text-light bg-dark p-3">
  31. <div class="text-uppercase d-flex justify-content-between" style="letter-spacing:3px; font-size:20px;">
  32. Dislikes
  33. </div>
  34. <hr class="bg-white w-100">
  35. <div class="table-responsive p-1">
  36. <p>
  37. <ul>
  38. <li>big long item one that is very big and long</li>
  39. <li>two</li>
  40. <li>three</li>
  41. <li>four</li>
  42. </ul>
  43. </p>
  44. </div>
  45. </div>
  46. </div>
  47. <!-- DISLIKES END -->
  48. </div>
  49. <!-- LIKES AND DISLIKES END -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement