Validate Text Area

محتويات الدرس

الكود المستخدم فى الدرس

				
					<!DOCTYPE html>
<html>
  <body>
    <h2>New Article</h2>
    <form target="_self">
      <input
        name="title"
        required
        type="text"
        name="title"
        placeholder="article"
        autofocus
      />
      <br /><br />

      <textarea
        name="content"
        required
        rows="3"
        cols="20"
        placeholder="Content Of article"
        maxlength="20"
        minlength="5"
      ></textarea>
      <br /><br />
      <!--button for textArea -->
      <input type="submit" />
    </form>
  </body>
</html>
				
			

تقدر تشوف الفيديو