Wednesday, 10 June 2020

How to make Responsive digital Form with HTML and CSS

Create Digital Form for yours website in responsive way. HTML syntax and full CSS Code are given below .with help of this you can easily make responsive Digital Form for any purpouseHTML Syntax<html><head><title> Login Form Template</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1,...

Tuesday, 19 April 2016

What is Android ?

Android is an open source and Linux-based Operating System for cellular telephones, for instance, advanced mobile phones and tablet PCs. Android was delivered by the Open Handset Alliance, drove by Google, and different associations. Android offers a brought together way to deal with application...

Thursday, 14 April 2016

JavaScript Code For Disable Right Click On Web Page

<script language="javascript"> document.onmousedown=disableclick; status="Right Click Disabled"; function disableclick(event) { if(event.button==2) { alert(status); return false; } } </script> ...

Thursday, 17 March 2016

Expandable Menu with JQuery

Make attractive Expandable Menu: (menu.html):- <ul id="menu"> <li><a href="#">What's new?</a> <ul class="active"> <li><a href="#">Weekly specials</a></li> <li><a href="#">Last night's pics!</a></li> <li><a href="#">Users' comments</a></li> </ul> </li> <li><a...

Tuesday, 15 March 2016

Advantage of CSS

CSS spares time - You can compose CSS once and after that reuse same sheet in various HTML pages. You can characterize a style for every HTML component and apply it to the same number of Web pages as you nee...

Tuesday, 1 March 2016

Expression And Statement In JavaScript

Expressions are phrases that make a worth. JavaScript code is completed more often than not of expressions in various forms.  Statements are phrase that don’t generate a worth but as an alternative have some class of side-effect. Examples of side-effects consist of storing variables in recollection and jumping to a unlike part of the script. Statements often merge keywords such as variables...

Monday, 22 February 2016

Introduction Of Cascading Style Sheet

Cascading Style Sheets, affectionately alluded to as CSS, is a basic configuration dialect planned to improve the procedure of making website pages respectable. CSS handles the look and feel part of a website page. Utilizing CSS, you can control the shade of the content, the style of text styles, the separating between sections, how segments are estimated and laid out, what foundation pictures...