jomeoi
January 18, 2022, 5:06pm
1
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:
jomeoi:
<form action="/https://www.freecatphotoapp.com/submit-cat-photo" ```
Share your complete code so that we can help you out.
jomeoi
January 18, 2022, 5:32pm
3
<form action="/https://www.freecatphotoapp.com/submit-cat-photo"
I've also tested it as:
<form action="https://www.freecatphotoapp.com/submit-cat-photo"
ILM
January 18, 2022, 6:08pm
4
please post all the code you have in the editor
jomeoi
January 18, 2022, 6:19pm
5
I did
I don’t know why it isn’t showing up
jomeoi
January 18, 2022, 7:14pm
6
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.
jomeoi
January 18, 2022, 6:16pm
9
**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
zaklina
January 18, 2022, 6:42pm
10
Close the form …
>
is mising in the end …
zaklina
January 18, 2022, 6:56pm
12
test was passing wen I close form.
jomeoi
January 18, 2022, 7:11pm
14
I took a scree shot of my code please tell me where I’m going wrong
zaklina
January 18, 2022, 7:17pm
15
<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 >
system
Closed
July 20, 2022, 8:32am
17
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.