How to add a new line in the Title in google forms
For adding title in google forms follow the steps given in the below video: Video link for reference The code to be copied for adding new line in title is: function AddNewLineTitle () { var form = FormApp . getActiveForm (); form . setTitle ( 'Form Name \n testing new line' ); }