CSS

best password

How to Maintain Password History Using PHP and Mysql

In this article, you will learn How to Maintain Password History Using PHP and Mysql. In this user change their password can’t reuse. New Password should not be the same as any of the previous 3 Passwords.

In this

how to make responsive website

How to Make Responsive Web Design using HTML

In this article, you will learn How to Make Responsive Web Design using HTML.
Responsive Web Design is about using HTML and 
CSS to automatically resize on all devices (desktops, tablets, and Mobiles).

Setting the Viewport

When you make responsive …

css icons

How to Create Font Awesome Icons using CSS

In this article, we will explain How to Create Font Awesome Icons using CSS.

Example:-

<html>
<head>
<title>Font Awesome Icons using CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<i class="fa fa-apple"></i>
<i class="fa fa-wifi"></i>
<i class="fa fa-car"></i>
css background image

How to use Opacity Property on Image

In this article, you will learn How to use Opacity Property on Image.

Example:-

<html>
<head>
<style>
img{
height:200px;
width:200px;
  opacity: 0.2;
}
h1{
align:center;
}
</style>
</head>
<body>
<h1>Image Transparency</h1>
<img src="imgage.jpg"/>
</body>
</html>
html comment

How to Create Comment in HTML and CSS

Sometimes we need to don’t show some part in output but we do not want to delete in source code so we use to comment. In this article, you will learn How to Create Comment in HTML and CSS.…