Skip to main content

Featured

What is a Python?

Python  is an  interpreted   high-level programming language  for  general-purpose programming . Created by  Guido van Rossum  and first released in 1991, Python has a design philosophy that emphasizes  code readability , notably using  significant whitespace . It provides constructs that enable clear programming on both small and large scales. [25]  In July 2018, the creator Guido Rossum stepped down as the leader in the language community after 30 years. [26] [27] Python features a  dynamic type  system and automatic  memory management . It supports multiple  programming paradigms , including  object-oriented ,  imperative ,  functional  and  procedural , and has a large and comprehensive  standard library . [28] Python interpreters are available for many  operating systems .  CPython , the  reference implementation  of Python, is  open source software [...

Coding for creating a Registration Form.....................

Coding for Creating a REGISTRATION FORM

<!DOCTYPE html>
<html>
<head>
         <title>Register Form</title>
</head>
<body>
<form>
        <table>
               <tr>
                    <td>
                         Name* :
                    </td>
                    <td>
                          <input type="text" placeholder="Name" name=" ">
                    </td>
               </tr>
               <tr>
                    <td>
                           Password* :
                    </td>
                    <td>
                          <input type="Password" placeholder="Password" name=" ">
                    </td>
               </tr>
               <tr>
                    <td>
                          Gender* :
                    </td>
                    <td>
                          <input type="radio" name="gender">Male
                          <input type="radio" name="gender">Female
                    </td>
               </tr>
               <tr>
                    <td>
                           Email* :
                    </td>
                    <td>
                          <input type="mail" placeholder="Email" name=" ">
                    </td>
              </tr>
              <tr>
                    <td>
                           Phone no* :
                    </td>
                    <td>
                           <select>
                                       <option>+1</option>
                                       <option>+2</option>
                                       <option>+3</option>
                                       <option>+4</option>
                                       <option>+5</option>
                                       <option>+6</option>
                                       <option>+7</option>
                                       <option>+8</option>
                                       <option>+9</option>
                                       <option>+10</option>
                                       <option>+11</option>
                                       <option>+91</option>
                                       <option>979</option>
                                       <option>980</option>
                                       <option>981</option>
                                       <option>982</option>
                                       <option>983</option>
                                       <option>984</option>
                                       <option>985</option>
                                       <option>986</option>
                           </select>
                           <input type="Phone" placeholder="98480***** " name=" ">
             <tr>
                    <td>
                           Type* :
                    </td>
                    <td>
                           <select>
                                       <option>Select</option>
                                       <option>Not Defined</option>
                                       <option>Transgender</option>
                                       <option>Student</option>
                                       <option>Bachelor</option>
                                       <option>Father</option>
                                       <option>Mother</option>
                                       <option>Girl</option>
                                       <option>Boy</option>
                           </select>
                    </td>
              </tr>
              <tr>
                   <td>
                         <input type="Submit" value="Submit" name=" ">
                   </td>
              </tr>
        </table>
</form>
</body>
</html>

Thank You!...........................

Comments

Popular Posts