Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<style media="screen">
h1{
color:red;
}
</style>
<style media="print">
h1{
color:green;
}
</style>
</head>
<body>
<h1> This is red on screen and green in print preview</h1>
</body>
</html>