Break Line in HTML Forach

Break Line in HTML Forach

Hello

I am trying to list records from a form in a page but currently they show all subform valuesnext to each other rather than as a list underneath each other. is there a way to achieve this?

currently: gate duties, gate duties

required:

gate duties
gate duties

here is the code so far

<%{%>

<% 
 for each record in RMP_Requirements_Parameters [ID != 0]
 {

      name =  record.Requirements.Task  ;

%>
  

    <%=name%> 

  
<% 
  } 

%>

<%}%>