Skip to content

Latest commit

 

History

History

week-1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

CreWork Month-1 Week-1 Assignment

Challenge- A simple Signup/ Login Page using HTML

Here, I have created a simple Signup and Login pages using HTML. Lets' dive into how to create a simple singup/Login page using HTML.

HTML :

HTML stands for HyperText Markup Language, which is used to structure the content of our webpages. All texts like paragraphs, images, button, hyperlinks etc. are included in our webpages with the help of HTML.

To create signup/login page we use <form> to store user input.

Forms:

  • Forms are used to store user input.

  • <form> can contain one or more form elements.

  • Input field - specifies an input field where the user can enter data.

    The element can be displayed in several ways depending on the type attribute.

       <input type="text">      - Defines a single-line text field.    
       <input type="email">     - Defines a field for email address.
       <input type="password">  - Defines a field for password.
       <input type="number">    - Defines a field for entering a number.
       <input type="radio">     - Defines a radio button.
       <input type="checkbox">  - Defines a checkbox.
       <input type="submit">    - Defines a submit button.
       <input type="button">    - Defines a button.
       <input type="reset">     - Defines a reset button.
       <input type="color">     - Defines a color picker.
       <input type="date">      - Defines a date control.
       <input type="range">     - Defines a range control.
    

and so on.
With the help of these elements, we can create a simple signup/login page using HTML.

Sign up page:

signup page

Log in page:

login page

My Key Takeaways:
  1. This week brushed up the concepts of HTML. 😍
  2. 2 new tags leant - .. , ..
  3. Overall, my expertise in HTML is good.
  4. Will be brushing up the concepts more and more by making projects.
My Social Links