1 <meta name="viewport" content="width=device-width, initial-scale=1.0">
2 <meta name="description" content="A page's description, usually one or two sentences." />
3 <meta name="keywords" content="banana, banana facts" />
1<meta name="viewport" content="width=device-width, initial-scale=0.9, user-scalable=no">
1// viewport for Responsive Design
2<meta name="viewport" content="width=device-width, initial-scale=1.0">
1/*
2vh Relative to 1% of the height of the viewport*
3*/
4<!DOCTYPE html>
5<html>
6<head>
7<style>
8h1 {
9 font-size: 20vh;
10}
11</style>
12</head>
13<body>
14
15<h1>Hello</h1>
16
17<p>Resize the height of the browser window to see how the font-size of h1 changes.</p>
18<p>1vh = 1% of viewport height.</p>
19<p>The vh unit is not supported in IE8 and earlier.</p>
20
21</body>
22</html>
23
24/*
25I hope it will help you.
26Namaste
27Stay Home Stay Safe
28*/