Skip to content

Instantly share code, notes, and snippets.

@jay0917
jay0917 / iOS-7-web-app.html
Created April 30, 2014 08:41 — forked from tfausak/ios-8-web-app.html
iOS-7-web-app
<!doctype html>
<html>
<head>
<!-- Run in full-screen mode. -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Make the status bar black with white text. -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
@jay0917
jay0917 / css:Media Queries
Last active August 29, 2015 14:00
css:Media Queries
/* Media queries for iPhone 3+4 portrait & iPhone 5 portrait */
@media only screen and (min-device-width:241px) and (max-device-width:320px) {
}
/* Media queries for Android (Samsung Galaxy) portrait */
@media only screen and (min-device-width:321px) and (max-device-width:380px) {
}
@jay0917
jay0917 / Mobile-head.html
Last active August 29, 2015 13:59
html:Mobile-head
<!-- mobile - -->
<!-- Title - -->
<meta name="apple-mobile-web-app-title" content="myID Attandence">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimal-ui" />
<!-- Hide status bar - -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-capable" content="yes">