1, HTML
2, CSS

1.9, The Input Tag

✴️ Sometimes we need information from users who use our website right? Then, we need input to do that for us. Let's proceed to how we can do it!!
✴️ First off let me introduce you to a new tag which is called "input tag". As you can understand from the name of the tag it enables users to put in different information.
✴️ The input tag looks something like this.
<input type="text" placeholder="Enter some text"/>

Brief explanation
🙂 type stands for the type of your input. It may be "text", "email", "number", "range" and so on.
🙂 Place holder stands for the text that will be displayed in a relatively low opacity on your input bar. It is the text that defines and tells the user what to input.

💻 Run your code and see the result after typing the code above in your body tag. It should look like the image below.