Sunday, 17 May 2015

Monday, 4 May 2015

Protect Files & Folders in Windows

Locking a folder is sometimes important for us. Maybe we have some files that we don't want others to get their hands into. Those files may be important for us or for our work and those in the wrong hand may sometime leads to a miserable life to us. But remember that there is no 100% protected folder....

Friday, 1 May 2015

Bootstrap Website

Creating a website with Bootstrap is easy and fun. If you know HTML and CSS or have a basic knowledge to code them, then you wont have much a problem to code in Bootstrap. Bootstrap used both HTML and CSS properties for designing. It commonly uses the HTML5 doctype. You should always remember to put the HTML5 doctype declaration and also the lang attribute at the starting of the webpage. <!DOCTYPE...

CSS Links

Links are found in every document. Links are used to click their way from one page to another page. With CSS, we can style links to make them decorative and colorful. Styling Links Links can be styled with any CSS property such as color, font-family, background etc. In addition, links can be styled differently depending on what state they are in. The four link states are: a:link - a normal link,...

HTML Forms

HTML Forms are used to create different kinds of user inputs. HTML <form> Tag HTML <form> tag is used create an HTML form to pass user inputs and data to the server. AN HTML form can contain input elements like text fields, checkbox, radio-buttons, submit-buttons, and more. A form can also contain select lists, textarea, fieldset, and label elements. The <form> elemts can contain...