This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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) { | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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"> |