Split Page Results into two columns?

Split Page Results into two columns?

hey all

So I have a page that displays selected product information triggered via a custom function on a report.

It shows the name of the product, price and image

the results are all under one another. How can I modify the code so the results display in two columns?

I.E
Product A    Product B

Product C   Product D

Product E

Etc

Thanks, here is my code:

  1. htmlpage ProductSample(empid)
  2. print = true
  3. pdf = true
  4. content
  5. <%{%>    <h2>Mood Board</h2><%prodLst = input.empid.toList();
  6.     for each prod in Add_Product  [ID in prodLst]
  7.     {%><%=prod.Product_Name%> <br> £<%=prod.Price%><br><%for each rec in prod.Product_Images
  8.         {
  9.             if (rec.Product_Image.contains("/sharedBy"))
  10.             {
  11.                 x = rec.Product_Image.getSuffix("/image/");
  12.                 y = x.getPrefix("\" border");
  13.                 a = "https://creatorexport.zoho.eu/zoho_z/product-catalog/All_Products/" + prod.ID + "/Product_Images.Product_Image/image-download/" + y;%>                <img src = <%=a%> border = "0"></img>            <%}
  14.             else
  15.             {%><%=rec.Product_Image%>            <%}
  16.         }%>        <br><br>    <%}
  17. }%>