Created
          July 19, 2016 17:23 
        
      - 
      
- 
        Save rodrigozan/60576831b182df332694f9eaeab6eb19 to your computer and use it in GitHub Desktop. 
  
    
      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> | |
| <!-- Título da página --> | |
| <title>Estrutura de um site HTML</title> | |
| <!-- Tags Meta --> | |
| <meta charset="utf-8"/> | |
| <meta name="keywords" content="wordpress, desenvolvimento web, seo, blogosfera"> | |
| <meta name="description" content="Este é um exemplo de estrutura de um site HTML."> | |
| <meta name="author" content="Rodrigo Zan"> | |
| <meta name="robots" content="index,follow"> | |
| <!-- Links --> | |
| <!-- link para o feed --> | |
| <link rel="alternate" type="application/rss+xml" title="Feed de notícias" href="/feed"> | |
| <!-- inclue a página style.css na página html --> | |
| <link rel="stylesheet" type="text/css" href="/assets/css/style.css"> | |
| </head> | |
| <body> | |
| <header> | |
| Este é o topo do site | |
| <nav> | |
| Aqui vai o menu do site | |
| </nav> | |
| </header> | |
| <section> | |
| O site é dividido em seções | |
| <header> | |
| Este é o topo da seção | |
| </header> | |
| <article> | |
| Aqui é onde escrevemos os artigos | |
| </article> | |
| <footer> | |
| E aqui fica o rodapé da seção | |
| </footer> | |
| </section> | |
| <aside> | |
| Aqui temos a barra lateral onde vão os widgets | |
| </aside> | |
| <footer> | |
| Este é o rodapé do site | |
| </footer> | |
| <!-- inclue a página script.js na página html --> | |
| <script src="/assets/js/scripts.js"></script> | |
| </body> | |
| </html> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment