inline frames

Inline frames are very important to learn for web designing..

you can check out that how inline frame looks by running inline frame on your page.
Syntax for inline frames is :
     <iframe src="url" [attributes] > </iframe>
Possible attributes for iframe tag are:
1 : frameborder : set the frameborder value .you may select it as 0.
2 : scrolling : set "yes" if you wants scrolling and set "no" if you don't want scrolling.
3 : width : set the width of your iframe displayed.
4 : height : set the required height for you iframe.
5 : marginheight : set the height of margin required.
6 : marginwidth : set marginwidth as required.
7 : topmargin : set topmargin as required.
8 : leftmargin : set leftmargin as required.
now you can create your own iframe anytime you need. An iframe from my under construction site is shown below-

Gadgets

Hello friends..
      At this time you finds that every website includes some gadgets.Gadgets are used to interact with users.
Like..gadget for facebook like ,share this page etc. So, every designer should know the basic domain of the gadgets and should know that how to create them??..
     Here , I will explain you that how to create the gadgets for your site.To write the code for a gadget you may need the all basic concept  of -
  • xml
  • html
  • javascript
So, every gadget starts with xml code , and inside that you can define html or javascript code for the working of desired output..
1.   In xml code start with module tag . As, name clarifies, module tag is used for creating modules within the code. Inside module tag use moduleprefs tag in which you  have to define title and scrolling type, etc.
2.  After that choose content type using content tag.You may choose any one of the type given -
                - html,
                - url,
                - list, etc. 
3.  A widely chosen type is html.I will explain you using html.If you are using html type than you have to use CDATA section in that code.
4.  Now inside that section you may put your javascript code using script tag in html. Inside the javascript code        
   put your logic of content.
5.  close all tags serially which are open.
Finally ,  your gadget is ready.
For further inquiry mail us by clicking here :   mail us

ajax

Ajax Tutorial




ajax is the one of the latest technique in web designining field.
ajax stands for asynchronous javascript and xml.
ajax is widely used due to its compatibility of loading the part of the page according to the need of the user or server.
An example for ajax is the most known search engine Google. Google is working on ajax.
You can see, when you are typing in search box of Google then Google generate a response also when you are typing and doesn't  click on the search button .This happens due to the ajax . ajax generates a response when user is interacting with your application and partial part of the webpage can be updated.So , overall our process become fast and more user freindly.