This is the second item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.

This is the third item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.
WEB TUTORIALS
PRACTICE EXAMPLES
HTML REFERENCES
CSS REFERENCES
PHP REFERENCES

Learn How to Make a Website

Learn the essentials of web development technologies and build your own website.

Welcome to Tutorial Hub Tutorial

At Tutorial Hubt you can learn the essentials of web development technologies from the basic to advanced topics, along with real life practice examples and useful references, so that you can create your own website or build career in web development. Here you will find:

Step by Step Tutorial

The tutorial section encloses an extensive collection of tutorials and examples that you can try and test yourself using online HTML editor. You will also find large numbers of demonstrations, tips and techniques covering everything you need to create web pages.

If you're a beginner, start learning from here »

Step by Step Tutorial

Useful References

The references section outlines all the standard HTML tags and CSS properties along with other useful references such as color names and values, symbols and character entities, web safe fonts, language codes, HTTP messages and much more.

Check out the complete web references »

Useful References

Interactive Tools

Practice while learning is the best way to learn. At Tutorial Hub Tutorial you will find a number of interactive tools like HTML Editor, SQL Playground, Color Picker, Bootstrap Button Generator and many other tools that you can play with to extend your learning.

Check out the online HTML editor »

Interactive Tools
Bootstrap UI Design Templates
            
    let numbers = [3, -7, 10, 8, 15, 2];

    // Defining function to find maximum value
    function findMax(array){
        return Math.max.apply(null, array);
    }

    // Defining function to find minimum value
    function findMin(array){
        return Math.min.apply(null, array);
    }

    document.write(findMax(numbers) + "
"); // Outputs: 15 document.write(findMin(numbers)); // Outputs: -7