Posts

Showing posts from October, 2017

How to add box-shadow in CSS

Image
Box- shadow property is a Cascading style sheet property which helps to cast shadow for an element. When you draw an image you shade the shadow with a pencil. When you work in code, you apply an inner or outer shadow to the element with box-shadow property. You can find the below picture of pencil shade and cascading style sheet method of implementation.  Looks cool nah!

HTML5 Markup - Why should we use HTML5?

HTML5  is a markup language used for structuring and presenting content on the World Wide Web. Its fifth version is the currently used stable version. You might have read about the HTML hierarchy in the previous article. This article will walk through the basic HTML5 code and explain the elements. <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Creative Technocrayts/title> <link rel="stylesheet" href="css/main.css" type="text/css" /> <!--[if IE]>   <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><!