Showing posts with label mobile app. Show all posts
Showing posts with label mobile app. Show all posts

Monday, August 4, 2014

How to Integrate twitter widget in website

This blog will show you how to integrate tweets of twitter into you website. Twitter provides widget for it and it very easy to integrate your tweets into your website. you need to follow these steps.


  1. You need to login to your twitter account
  2. Go to settings then profile
  3. look for widget
  4. click create new
  5. make your configuration
  6. and you will get to code to be pasted into your html
Now you have successfully integrated your twitter with your website.

Sunday, July 20, 2014

How to test mobile web page and application

When you are building a webpage or an application for mobile. It is required to test before you go live or send it to store repository. Testing gives you a good idea to find out errors in application. Once the errors are in front of you can fix them and give user a error free and reliable program.

You need to check it on different OS platform and different browsers. Many of designers ignores testing phase by which sometime the web page don’t appears to user with perfect layout. So it is mandatory to check each and every page of website.

Testing on tablets is most important for designers. Because tablets are growing every faster every years. Different touch screen tablets have different requirements.


For testing an application a programmer can use emulator for testing and debugging mobile apps. An emulator work as a real device on your computer. It provides all the frameworks that you need to test a mobile application there are many emulators over internet is free to download.

Saturday, May 10, 2014

How to make a website responsive without boostrap

Hi every one,

This post will let you know you can make a website responsive without using boostrap. There are some simple css techniques which you have to use like meadia screen, maxwidth, minwith e.t.c.....

what you chould do is you can use first
write the simple css code in your stylesheet for desktop view
for mobile view use @media screen and (max-width: 520px) make all the div{width:100%;}
for image to make it responsite use img{max-width:100%}
you can also use grid.css for your layout

and here it is done. try it once