Last active
January 4, 2017 20:42
-
-
Save wizard04wsu/07b1b380d31c122685313d09fe3eda78 to your computer and use it in GitHub Desktop.
HTML5 document template
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<!-- prevent Internet Explorer from using compatibility mode --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<!-- page-specific metadata --> | |
<meta name="description" content=""> | |
<meta name="keywords" content=""> | |
<!-- make the layout responsive --> | |
<meta name="viewport" content="initial-scale=1"> | |
<style> | |
@-ms-viewport { zoom:1.0; width:extend-to-zoom; } | |
@viewport { zoom:1.0; width:extend-to-zoom; } | |
</style> | |
<!-- favicon and Apple touch icon --> | |
<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico"> | |
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="favicon.ico"> | |
<link rel="apple-touch-icon" href="apple-touch-icon.png"> | |
<link rel="stylesheet" type="text/css" media="all" href="stylesheet.css"> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment