Posts

Showing posts with the label html

Responsive Touch Input Text Box - HTML,CSS

Image
I Had created a text input field for touch interface for the mobile web development for you to create a text input for touch devices like iPad  and  it  is responsive and easy to integrate, so you can easily use this code for your mobile web development , i had a long text box with great looking UI   and a large button . Style: font-family : Century Gothic font-size   :    25px;                                             DEMO 1     DEMO 2     DOWNLOAD Style For Text Box: <style> body { font-family : Century Gothic; font-size :25px; colour : blue; background : lightblue; } input { padding : 10px; border : 2px; .hover : blue; font-family : Century Gothic; font-size :25px; width : 600px } input:focus { border-color:yellow; } </style> A...

Get Facebook Profile Pictures From Graph API

Image
Facebook as given a handy API to retrieve or to get  the Facebook profile picture just by giving the Facebook unique  id of the user,  we can also customize  the picture size by various types as you have seen many website uses login with Facebook function in that they are getting the users data from there profile but many failed to get the user profile picture the real truth is its very easy just a single line of code will get the any users profile pic by the Facebook id by giving a call to API and now i had created a simple php based function to get the user data if the user types the username in the search box and hit enter it call the image and display it in the webpage, i created this because it would help the person who are integrating it inside a php script  see the steps below. To get the image use this link          ...

Extract Favicon From URL In Simple API

Image
Extract Favicon From URL In Simple API: A favicon is also known as a shortcut icon, Web site icon, URL icon, or bookmark icon, is a file containing one or more small icons, most commonly 16×16 pixels, associated with a particular Web site or Web page so you have see many websites extract these favicon and display it beside we can extract this in very simply steps like getting URL call from Google plus link . so we are using this    API call below https://plus.google.com/_/favicon?domain=www.facebook.com                     Demo              Download And you can display the image in html form like this by adding img src tag <img src="https://plus.google.com/_/favicon?domain=www.facebook.com">  You can also use this function in PHP  to display the favicon from the stored link in database echo "...