ANGULAR

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

JavaScriptTutorials

This JavaScript Tutorial covers the world’s most popular language JavaScript. Javascript is the scripting language we use to make web pages interactive. It is written in plain text on the HTML page and runs in the browser. Modern JavaScript evolved so much that it can run on the server side today. We use it along with HTML & CSS and power the entire web.

Before You begin

Audience

This Tutorial is intended to help a newbie or beginner programmer get started with JavaScript.

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