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>
In this article, you will learn How to Create Border using CSS. Example:- index.php <html> <head> <title>How to Create Border using CSS</title> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <h2>Types of border</h2> <p class="dotted">dotted border.</p> <p class="dashed">dashed border.</p> <p class="solid">solid border.</p> <p class="double">double border.</p> <p class="groove">groove border.</p> <p class="ridge">ridge border.</p> <p class="inset">inset border.</p> <p class="outset">outset border.</p> […]