Chandu yadav has Published 1091 Articles

Generate Fibonacci Series

Chandu yadav

Chandu yadav

Updated on 16-Jun-2020 15:49:35

2K+ Views

The Fibonacci sequence is like this, 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ……In this sequence, the nth term is the sum of (n-1)'th and (n-2)'th terms.To generate we can use the recursive approach, but in dynamic programming, the procedure is simpler. It can store all ... Read More

Fleury’s Algorithm

Chandu yadav

Chandu yadav

Updated on 16-Jun-2020 12:47:09

7K+ Views

Fleury’s Algorithm is used to display the Euler path or Euler circuit from a given graph. In this algorithm, starting from one edge, it tries to move other adjacent vertices by removing the previous vertices. Using this trick, the graph becomes simpler in each step to find the Euler path ... Read More

Center tabs in Bootstrap

Chandu yadav

Chandu yadav

Updated on 15-Jun-2020 07:35:21

930 Views

Use the .nav-justified class in Bootstrap to center tabs in Bootstrap.You can try to run the following code to center tabs −ExampleLive Demo           Bootstrap Example                                          Web Development          The following are the web dev technologies:                       HTML5             jQuery             JavaScript             Ajax             ES6                    

Disable a dropdown item with Bootstrap

Chandu yadav

Chandu yadav

Updated on 15-Jun-2020 07:21:37

6K+ Views

To disable to dropdown item in Bootstrap, use the .disabled class with the .dropdown-menu class.You can try to run the following code to disable dropdown item −ExampleLive Demo           Bootstrap Example                                          Beverages          The following are the beverages available in India:                       Beverages                                        Gatorade                Sting                Red Bull                Pepsi                Coca Cola                                

Remove default list-style in Bootstrap

Chandu yadav

Chandu yadav

Updated on 15-Jun-2020 07:13:10

29K+ Views

To remove the list styles in Bootstrap, use the .list-unstyled class.You can try to run the following code to implement the .list-unstyled class −ExampleLive Demo           Bootstrap Example                                          Technologies                       Home             PHP             Java             jQuery             JavaScript             Ruby                                Technologies (Unstyled)                       Home             PHP             Java             jQuery             JavaScript             Ruby                    

How to use Bootstrap Tab Plugins

Chandu yadav

Chandu yadav

Updated on 15-Jun-2020 07:03:28

173 Views

By combining a few data attributes, you can easily create a tabbed interface. With this plug-in you can transition through panes of local content in tabs or pills, even via drop down menus.You can try to run the following code to implement tab plugins −ExampleLive Demo       ... Read More

Item text inside the list group in Bootstrap

Chandu yadav

Chandu yadav

Updated on 15-Jun-2020 06:39:35

288 Views

To set item text inside the list group, use the .list-group-item-text class.You can try to run the following code to implement the .list-group-item-text class −ExampleLive Demo           Bootstrap Example                                          Cars                                      Hyundai                i10                i20                                        Volkswagen                                Vento                Polo                                

Forms of Bootstrap Media Objects

Chandu yadav

Chandu yadav

Updated on 12-Jun-2020 22:33:48

145 Views

The goal of media objects is achieved by applying classes to some of the simple markup. There are two forms to the media object −.media − This class allows to float a media object (images, video, and audio) to the left or right of a content block..media-list − If you ... Read More

Bootstrap Grid Stacked to horizontal grid with fluid container

Chandu yadav

Chandu yadav

Updated on 12-Jun-2020 22:15:53

194 Views

To create a grid stacked to horizontal grid with fluid container, use the container-fluid class.This class allows the container to span to the screen’s full width.You can try to run the following code to create a grid with fluid container −ExampleLive Demo           Bootstrap Example ... Read More

Add headers inside the dropdown menu in Bootstrap

Chandu yadav

Chandu yadav

Updated on 12-Jun-2020 21:26:31

991 Views

To add headers inside the dropdown menu, use the .dropdown-header class in Boostrap. The .dropdown-menu class is used to add a dropdown menu.You can try to run the following code to implement the dropdown-header class in Bootstrap −ExampleLive Demo           Bootstrap Example       ... Read More

Advertisements