Last active
December 27, 2015 21:29
-
-
Save kalebweb/7392203 to your computer and use it in GitHub Desktop.
html basic 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="pt-br"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | |
<meta name="description" content=""> | |
<meta name="keywords" content=""> | |
<title>HTML5</title> | |
<link rel="shortcut icon" href="public/img/favicon.png"> | |
<link rel="apple-touch-icon" href="public/img/favicon.png"> | |
<link rel="stylesheet" href="public/css/style.css"> | |
<base href=""> | |
</head> | |
<body> | |
<header role="banner"></header> | |
<main id="content" role="main"></main> | |
<footer role="contentinfo"></footer> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment