What you desire to achieve sounds like it may be PWA related, maybe? The goal of a Progressive Web App is to provide a native app-like experience by allowing, aside from many other things, users the capability to install a webpage onto the home screen of their mobile devices.
Placing the following element within the head section of your HTML file will setup a manifest for your PWA.
<link rel="manifest" href="manifest.json">
A manifest file provides the required metadata someone interested in installing your application needs for their browser to know how to do so. The manifest file lets the developer specify certain settings for their application that improves its integration within the given operating system environment. Examples of a manifest file, along with all of the fields commonly used within a manifest file, and other resources that you could find useful, can be found on Mozilla's website.