How do or what do you edit so that when you look at the form1, you will see the title of the form?
I got everything else working and I have inserted the words into the form1, to where it said: You can edit your form title here, but it will not show up.
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You need to add the title *after* the <!- You can add a form title here --> tag, but before the next </font> tag.
Note also that the generated form does not have a heading, so to add a heading that shows up in your browser window, at the top of the generated page (form1.html) you should put:
<html>
<head>
<title>Title of your page</title>
</head>
<body>
and at the bottom you should put
</body>
</html>
Of course, there are all sorts of fancy standards-compliant things you could do extra, but that should do what you want.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How do or what do you edit so that when you look at the form1, you will see the title of the form?
I got everything else working and I have inserted the words into the form1, to where it said: You can edit your form title here, but it will not show up.
Thanks
You need to add the title *after* the <!- You can add a form title here --> tag, but before the next </font> tag.
Note also that the generated form does not have a heading, so to add a heading that shows up in your browser window, at the top of the generated page (form1.html) you should put:
<html>
<head>
<title>Title of your page</title>
</head>
<body>
and at the bottom you should put
</body>
</html>
Of course, there are all sorts of fancy standards-compliant things you could do extra, but that should do what you want.
Yep, that did it and "THANK YOU" ever so much.