--

How to create a login form using HTML

Introduction

HTML stands for HyperText Markup Language. This is the most important markup language that can be used to create a webpage. It is used to display text, image, audio, and video in a webpage.

CSS stands for Cascading Style Sheets. It is used to style HTML documents. CSS can make responsive web pages and is used for styling and its collection of formatting rules. It is used for designing purposes. The CSS extension is (.CSS).

There are three types of CSS:

Inline CSS

Internal CSS

External CSS

Step 1

Create a new folder and give a name to the folder. In the folder save an HTML and CSS file. After creating the folders, open the sublime text editor.

Example

<form>

<input place holder=”type=”text”><br>

<button type="button"></button>

--

--