Created
January 26, 2017 17:01
-
-
Save cbetoni/187692c29a48642da04c51223fcd2eb2 to your computer and use it in GitHub Desktop.
Template para inicio de HTML5
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"> | |
| <!-- Description Até 140 caracteres --> | |
| <meta name="description" content="Description"> | |
| <!-- Favicon --> | |
| <link rel="icon" href="img/icon/favicon.ico" type="image/ico" sizes="16x16"> | |
| <!-- Google Chrome Mobile --> | |
| <meta name="theme-color" content="#fff"> | |
| <link rel="icon" sizes="192x192" href="/img/icon/icon-highres.png"> | |
| <!-- MetaTags Redes Sociais --> | |
| <meta property="og:type" content="website"/> | |
| <meta property="og:locale" content="pt_BR"> | |
| <meta property="og:site_name" content="site name"> | |
| <meta property="og:title" content="site title"/> | |
| <meta property="og:description" content="site description"/> | |
| <meta property="og:url" content="http://www.example.com/"/> | |
| <meta property="og:image" content="http://www.example.com/img/meta/image.jpg"/><!-- 1200px x 630px --> | |
| <meta property="og:image:type" content="image/jpeg"> | |
| <meta property="og:image:width" content="1200"> <!-- PIXELS --> | |
| <meta property="og:image:height" content="630"> <!-- PIXELS --> | |
| <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1.0"> | |
| <!-- Title Até 70 caracteres --> | |
| <title>Title</title> | |
| <!-- CSS LINKS --> | |
| <link rel="stylesheet" href="/css/main.css"> | |
| </head> | |
| <body> | |
| <!-- Conteúdo --> | |
| <h1>Hello Wolrd!</h1> | |
| <!-- JS --> | |
| <script type="text/javascript" src="/js/main.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment