Hi all,
I’m at the beginning of the HTML project and am confused on an early part. When I get to the “form method” part, I believe I’m supposed to then provide an action with a web url.
So two questions:
- Am I correct in thinking that a url needs to go in here? Past example looked like this:
<form method="post" action='https://register-demo.freecodecamp.org'>
- Do I need to create a custom URL for this? Where do I get the URL?
Below is my current code for this part.
<body>
<h1>Survey Form</h1>
<p>Please fill out all required sections marked with an *</p>
<form method="post">
Thanks in advance!