How to make pages on web site?

So im wondering how to make different pages for website, like when clicking on something it redirects visitor to different page in same website if you know what i mean?

Imagine that you have two or more pages. These pages also contain menu. This menu has link. First menu item has something like this: Page 1, second Page 2 and so on … Ps: href should contain path_to_file/page.html or just name if all html files are in same directory.

So basicaly making multiple html files and making a path to them on href?

Yes. One html file == one page.

Linking can either be done using simple href tag in HTML or by using JavaScript which is a more sophisticated way and can handle other events as well. Such as when you need to work on data and once that work is done only then page should navigate.