Form-Input/Form

I far as I can tell I’m following the format/ example exactly but it isn’t working. I don’t understand what is missing or what I’m not doing. For example:

<form action="/url-where-you-want-to-submit-form-data">
  <input>
</form>
<form action="/https://www.freecatphotoapp.com/submit-cat-photo"<input type="text" placeholder="cat photo URL"></form>
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36

Challenge: Create a Form Element

Link to the challenge:

Share your complete code so that we can help you out.

<form action="/https://www.freecatphotoapp.com/submit-cat-photo" I've also tested it as: <form action="https://www.freecatphotoapp.com/submit-cat-photo"

please post all the code you have in the editor

I did
I don’t know why it isn’t showing up

I took a screen shot it won’t show properly in the forum.

A picture of code is not very helpful. Please post your actual code.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).


It looks like you may be missing a closing >, but it would help to see your most recent code.

**Tell us what’s happenin

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="https://www.freecatphotoapp.com/submit-cat-photo"
<input type="text" placeholder="cat photo URL"></form>
</main>
 




      **Your browser information:**

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36</code>

**Challenge:**  Create a Form Element

**Link to the challenge:**
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/create-a-form-element

Close the form …
> is mising in the end …

(post deleted by author)

1 Like

test was passing wen I close form.

(post deleted by author)

1 Like

I took a scree shot of my code please tell me where I’m going wrong

<form action="https://www.freecatphotoapp.com/submit-cat-photo">

you need to close this one …
in your code is like this:

<form action="https://www.freecatphotoapp.com/submit-cat-photo"

> is missing…

1 Like

@zaklina is correct - this line is missing a >

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.