Make any web page responsive using css
1.Put the code in <head> </head> tag ---------------------------------------------------------------- < meta name = "viewport" content = "width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" > < meta http - equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" > < meta name = "HandheldFriendly" content = "true" > ------------------------------------------------------------------- 2.Put it inside <style> </style> ------------------------------------------------------------------ /* Tablet Landscape */ @media screen and ( max - width : 1060 px ) { #primary { width : 67 % ; } #secondary { width : 30 % ; margin - left : 3 % ;} } /* Tabled Portrait */ @media screen and ( max - width : 768 px ) { #primary { width : 100 % ; } #secondary { width : 100 % ; ...