CSS box shadow | CSS styling

How to create a box shadow with CSS So how we will create CSS box shadow. To do this you must know little bit about HTML and CSS. So lets do this The follow these step to create box shadow 1. Create new html file. To create a html file open an editor and save that file with .html extension. Write basic tag of html like html head and body tag. And then save it with .html extension. I personally recommended to install nodepad++. Nodepad++ is color the sytax. 2. Creating box To create box in html we will use div tag as a box. Div tag is work as a container. So div tag is the best tag for creating box. <div></div> 3. Adding attribute to div tag Attribute is the property of any tag. We will use class attribute for div tag. Class attribute will represent that tag. Do to this we will simply put class="Class Name" . <div class="box" ></div> 4. Now adding style to the box Now we will add style the box. Add style tag between head tag. To acces...