How to display an icon when you add a site to favorites in web? [closed]

There are a number of images you can include (splash, home screen, etc.) listed in Apple’s documentation. The one you’re talking about is the apple-touch-icon. https://developer.apple.com/library/mac/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html <link rel=”apple-touch-icon” href=”https://stackoverflow.com/questions/27486990/touch-icon-iphone.png”> <link rel=”apple-touch-icon” sizes=”76×76″ href=”touch-icon-ipad.png”> <link rel=”apple-touch-icon” sizes=”120×120″ href=”touch-icon-iphone-retina.png”> <link rel=”apple-touch-icon” sizes=”152×152″ href=”touch-icon-ipad-retina.png”>

html/css empty space at bottom of the website

In your CSS class .box is margin-top:30px or height:100%. This is what makes white space at the bottom of your website box { background: #fff none repeat scroll 0 0; box-sizing: border-box; height: 100%; **//Set it to “auto” margin-top: 30px; **//or this one, change it to 0px or remove** overflow: hidden; width: 100%; }