I'm brand new to HTML5. Zoho CRM has generated an HTML5 code that allows me to embed a web form on my page with the CRM's "Create Account" process. It functions properly, but I would like to arrange the fields into two columns instead of one.
What adjustments should I make?
The current fields (in one column) include:
<div class='zcwf_row'><div class='zcwf_col_lab' style='font-size:20px; font-family: "Open Sans";'><label for='First_Name'>Nombre<span style='color:red;'>*</span></label></div><div class='zcwf_col_fld'><input type='text' id='First_Name' name='First Name' maxlength='40'></input><div class='zcwf_col_help'></div></div></div>
<div class='zcwf_row'><div class='zcwf_col_lab' style='font-size:20px; font-family: "Open Sans";'><label for='Last_Name'>Apellido<span style='color:red;'>*</span></label></div><div class='zcwf_col_fld'><input type='text' id='Last_Name' name='Last Name' maxlength='80'></input><div class='zcwf_col_help'></div></div></div>
// Remaining input fields here...
Is there a way I can split a Web Form into two separate columns?