Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

How to get playtime, height and width of a vedio by PHP

Hello Reader's if you want to get the details about the vedio from your local server then you can use the code liberary as below:- $ffmpeg_path = 'ffmpeg'; //or: /usr/bin/ffmpeg - depends on your installation $vid = 'PATH/TO/VIDEO'; //Rep...

How to make auto search using Javascript

Hello Reader's if you want to make realtime search listing from text box then here you can learn how to do it. This code is driven by Javascript. The listing will appear from another page and quick search will works on from page. So the html co...

How to edit value without text box using Angular JS

Hello Reader's if you want to edit any value from db in the webpage without any text box or form, Then choosing the Angular JS will be the best option Lets see the example For this lets start with the html page. The code for this page will go...

How to make dynamic title using Angular JS

Hello Reader's if you are new Angular JS and you want make dynamic title by it then this blog very helpful to your. By using the title as dynamic you will be free from all the pages with their title, You just need to set it at one place then all...

Attribute Methods

1. attr( properties ):-Set a key/value object as properties to all matched elements. Syntax:-selector.attr({property1:value1, property2:value2}) Example:- <html> <head> <title>The Selecter Example</title...

jQuery - Selectors

jQuery Selectors are used to find out matching elements and select one or more HTML elements using jQuery and then perform operations on them. Factory function is a synonym of jQuery() function start with the dollar sign and parentheses $(...

How to show user's Lat and Long using google script

Hello User if want to show user's lat and long to screen then you can use the code as below:- First you have to create a html page and named it file.html and paste the following code in it. <!DOCTYPE html> <html> <body> ...

How to insert special symbols in HTML

Hello Reader! If you are new to web desingning and you need to insert some special symbols in your web page then this blog is very helpful for you. You might have seen copyright symbol , This type of symbol will only generate if you insert their...

JQuery - eq( index ) Method

JQuery have DOM filter methods which we can use to filter out elements from a list of DOM elements. It provides DOM traversal methods to help us select elements in a document randomly as well as in sequential method. DOM Traversal Methods...

How to upload files using Angular JS

Hello Readers if you want to upload files (images or music) then now Angular JS offers you a way lot more esier. Using angular give user a light and fast interface which is very useful for low internet speed connections. Lets see the working e...

How to add two objects into one using PHP

Hello Reader's if you want to add two or more objects into one. Then you can see it into the example below:- Ideally if you want the data to be together, you should have a parent class which has all these member functions and you should have a...

How to superimpose one image over another using PHP

Hello Readers if you have two images i.e. one png and one jpg, Then by using PHP you can merge both on a single one. Lets see the example as given below:- <?php # If you don't know the type of image you are using as your originals. $...

How to show custom lines on Google Map

Hello Reader's if you are integrating the Google Map in the website and you also want to show custom line on the map, Then this blog is very helpful you. Lets see the working of this custom map. <!DOCTYPE html> <html> <head&g...

How to show bounce effect on google map marker

Hello Reader's if you are integrating the google map with marker showing your address, Then you can also make the marker with bounce effect. Lets see my code as below:- <!DOCTYPE html> <html> <head> <script src="http:...

How to make gradient in backgound of a div

Hello Readers if you need to show mix colored in the background of the div then instead of using the photoshop images you can also do it by using CSS3. Lets see the code css for this:- background:-webkit-gradient(radial, 165 0, 0, 220 -257,...

How to make 3d effect of a div using CSS

Hello Reader's if you want to make your html webpage to look like 3d image then you can use the code below. Here in the code css will make the background shadow of div, Which will make it appear in 3d. Let's see the code:- -moz-box-shadow:...

How to make border with round radius for all the images in website

Hello Reader's you want to make the edges with border and round in shape for all the images in you website then you just need to put CSS3 to update as below:- border:solid 5px #000000; -moz-border-radius: 32px; -webkit-border-radius: 32px; ...

How to show new messages in desing using CSS

Hello Reader's if you want to make nice view to show the messages and alert count then you can use the Badge of bootstap <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta c...

How to make iconic hower on link using Javascript

Hello Reader if you want to make the nice and iconic hower on link then you can use Javascript as below:- <!DOCTYPE html> <html lang="en"> <body> <div class="container"> <h3>Tooltip Example</h3> ...

How to make simple popup using Bootstrap

Hello Reader's if you are looking for nice and light design of popus, then bootstrap offers you much better way of doing this. Lets see the code as written as below:- <!DOCTYPE html> <html lang="en"> <head> ...

How to expand the div with a click using Bootstrap

Hello Reader's if you are new to Bootstrap, And you want to expand the div with a single click. Lets see the example below:- <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-sc...

How to make Ajax loading icon using CSS

Hello Reader's if your website is taking too much time to load the data then you can show the ajax loading icon for the time. Lets see how to put the loading icon in the website. <!DOCTYPE html> <html> <meta name="viewport"...

How to make simple dropdown menu using CSS

Hello Reader's if you are new to designing the menu bar, Then you can see how to make the quick dropdown menu using HTML and CSS. <!DOCTYPE html> <html> <title>findnerd dropdown example</title> <meta name="viewpor...

The general css for header, body and footer for all website

Hello Reader's if you are new to designing the website then you must have to know the common CSS that must be inlcuded in every website. Lets see the CSS in the example below:- <!DOCTYPE html> <html> <title>W3.CSS</titl...

snow fall effect using pure css

Hi all, Below is an example of snow falling effect using pure css3. in this example I'm just using css animation and change the snow image position - css #snow{ background: none; background-image: url('snow.png'),url('snow2.png'...

How to redirect 404 error page to custom 404 page

When a visitor visits any wrong URL in the site , they see 404 not found error comes from server side by default. We can redirect the visitor from any invalid URL to any of the custom page or any page we want. For the most of the sites , we see t...

How to select images from database and show on page

Hello Reader's! If you have stored the image in database as blob. Then you need a php code to retrieve them and a html page to show them. Lets see an example below how to show them First create a php page getImage.php and code as written below...

custom side bar with the help of jquery

Hello Readers In this article I will guide you how to create custom side bar with the help of jquery. Here is the HTML <section id="slideBox" class="open"> <nav id="menu"> <ul> ...

JSON

Javascript Object Notation JSON is a way to transfer data or information from one page to another page. JSON stands for JavaScript Object Notation JSON is a lightweight data transfer format JSON is language indepe...

Simple Zebra Table by using Css3

Hello Readers, Here is the Example of Simple Zebra Table. Here is the HTML <table> <tr> <th>Name</th> <th>Date of Birth</th> <th>Age</th> ...

DOM in HTML JQUERY

DOM Document Object Model DOM is structure that is used to invoke the elements of a page or a script file. It is the hierarchy of structure that a particular document have where we want to invoke the elements of that particular document. F...

What is a Web Worker?

Hi all, Below is a short description of web workers. What is a Web Worker? Web worker is JavaScript which runs in backside without affecting the performance of site and it is independent of other the scripts,. what web worker are f...

Bootstrap float

how to float an element to left or right. Bootstrap provides predefined classes pull-right and pull-left which floats an element to the left or right according to the requirement. For example if you want to float an image to the right and text...

What is css gradients ?

Hello All, Earlier, we have used image for gradients effect but now we will use gradient using css3 and we will see how to use many colors in gradient and only one color in gradient. Gradients are declared by background-color but according ...

What is semantic elements ?

Hello all, Semantic elements clearly defines its content. It means that elements which are recognize by their name in html for example <hedaer > , <nav> , <footer>. You can say it helps understand what is happening on the pag...

Table in HTML

With the help of HTML table, we can arrange the data in a proper format. HTML table consist of rows and columns.we use various tags for creating HTML table. Tags used for creating HTML table:- Table :- This is the very first tag for creati...

html link

How can you create image as a link in html. You can make an image as an link as through following coding.This make your link more eye-catchy and you can also make logo as link thus making your page more effective. <a href="default.asp"&g...

html address

html address. html5 provides an inbuilt tag <address>.Through this tag you can define contact information of a document or article.The element between the address is displayed in italic and also most browsers will also add line break bef...

Column offseting.

How can we increase the left margin of a column in bootstrap. In bootstrap we can increase the left margin of a column by adding class offset. for example by adding .col-md-offset-4 moves .col-md-4 by four places. <div class="row"> ...

What is grid system ?

What is grid system ? Grid usage to guide design and page layout is in practice for around 100 years now Rationalism and New Objectivity came into picture in 1910s and 1920s due to ornamental design This shift in design was responsib...

Text highlight

How to highlight a text in bootstrap In bootstrap we can highlight the important text with the tag <mark>. Thus text can be easily highlighted and customization can be done as required. As shown in example below name of country's get...

Gradient

How to create background of two colors. In bootstrap we can create background of two colors with the help of gradient.You can also specify the angle os standard two color. #gradient > .vertical(#333; #000); #gradient > .horizontal(#...

Clearfix

how to clear floats in bootstrap. Bootstrap provides an predefined class .clearfix through which you can clear floats just by adding this class to the parent element. .clearfix() { &:before, &:after { content: " "; ...

Feedback with optional icons

Feedback with optional icons. Bootstrap provides classes to add optional feedback icons which would required manual positioning for inputs. Thus, it save a lot of time for making it user friendly. This can be done by adding class .has-feedback...

Validation states

Validation states We can denote the state of a form through visual,color-based indications.This can be done through using classes as .control-label, .form-control, and .help-block.These are the validation styles for warning, error and success ...

Table specific customization

How to customize a table to your requirement. We can also apply specific characterstics for a table.To define special style for a table we can add id attribute to the table. <table id="t01"> <tr> <th>Firstname</...

Table caption

How to add a caption to a table. We can also give heading to a table making it more attractive.This can be done by adding caption attribute to the table. <table style="width:100%"> <caption>Monthly savings</caption> ...

Table rowspan

How to create cell span of more than one column in a table. To create a cell span of more than one row in a column we add the attribute rowspan to that column and designate its value.The value of rowspan determine the number of rows a cell spa...

Table colspan

How to create cell span of more than one column in a table. To create a cell span of more than one column in a row we add the attribute colspan to that column and designate its value.The value of colspan determine the number of columns a cell ...

Table heading.

How to create heading in a table. It is very easy to create heading in a table.We can do it by adding <th> tag for the content of row to be shown as heading. <table style="width:100%"> <tr> <th>Firstname<...
1 7 12
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: