<sectionid="description"> يمكنك إنشاء نماذج ويب تقوم بالفعل بإرسال البيانات إلى خادم لا يستخدم أكثر من HTML خالص. يمكنك القيام بذلك عن طريق تحديد إجراء على عنصر <code>form</code> الخاص بك. على سبيل المثال: <code><form action="/url-where-you-want-to-submit-form-data"></form></code></section>
<sectionid="instructions"> ضع حقل النص داخل عنصر <code>form</code> ، وأضف السمة <code>action="https://freecatphotoapp.com/submit-cat-photo"</code> إلى عنصر النموذج. </section>
- text: ضع عنصر إدخال النص داخل عنصر <code>form</code> .
testString: 'assert($("form") && $("form").children("input") && $("form").children("input").length > 0, "Nest your text input element within a <code>form</code> element.");'
- text: تأكد من احتواء <code>form</code> على سمة <code>action</code> تم تعيينها على <code>https://freecatphotoapp.com/submit-cat-photo</code>
testString: 'assert($("form").attr("action") === "https://freecatphotoapp.com/submit-cat-photo", "Make sure your <code>form</code> has an <code>action</code> attribute which is set to <code>https://freecatphotoapp.com/submit-cat-photo</code>");'
- text: تأكد من أن عنصر <code>form</code> يحتوي على علامات فتح وغلق جيدة الإنشاء.
testString: 'assert(code.match(/<\/form>/g) && code.match(/<form[^<]*>/g) && code.match(/<\/form>/g).length === code.match(/<form[^<]*>/g).length, "Make sure your <code>form</code> element has well-formed open and close tags.");'
```
</section>
## Challenge Seed
<sectionid='challengeSeed'>
<divid='html-seed'>
```html
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <ahref="#">cat photos</a>.</p>
<ahref="#"><imgsrc="https://bit.ly/fcc-relaxing-cat"alt="A cute orange cat lying on its back."></a>