| <!DOCTYPE html> |
| <html lang="pt-br"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Jornal Oliveira</title> |
| <style> |
| body { |
| font-family: Arial, sans-serif; |
| background-color: #f3fdf3; |
| margin: 0; |
| padding: 0; |
| } |
| header { |
| background-color: #2d662d; |
| color: white; |
| padding: 20px; |
| text-align: center; |
| font-size: 28px; |
| font-family: "Engravers MT", "Old English Text MT", serif; |
| } |
| nav { |
| display: flex; |
| justify-content: center; |
| background-color: #4CAF50; |
| padding: 10px; |
| } |
| nav button { |
| background-color: white; |
| border: 1px solid #4CAF50; |
| padding: 10px 20px; |
| margin: 0 10px; |
| cursor: pointer; |
| font-weight: bold; |
| } |
| .notification { |
| background-color: #fff8c4; |
| padding: 10px; |
| text-align: center; |
| font-size: 14px; |
| border-bottom: 1px solid #ccc; |
| } |
| .content { |
| padding: 20px; |
| } |
| .hidden { |
| display: none; |
| } |
| </style> |
| </head> |
| <body> |
| <header>Jornal Oliveira</header> |
| <div class="notification"> |
| Site em desenvolvimento. Qualquer problema entre em contato no Instagram <strong>@jornal_oliveira</strong> ou envie uma sugestão. |
| </div> |
| <nav> |
| <button onclick="showSection('inicio')">Início</button> |
| <button onclick="showSection('avaliar')">Avaliar</button> |
| <button onclick="showSection('sugerir')">Sugestão</button> |
| <button onclick="showSection('participar')">Participar</button> |
| <button onclick="showSection('login')">Login</button> |
| </nav> |
| <div class="content"> |
| <div id="inicio"> |
| <h2>Últimas Notícias</h2> |
| <input type="text" placeholder="Pesquisar autor ou categoria..." style="width: 100%; padding: 10px;"> |
| <p>As últimas notícias serão exibidas aqui...</p> |
| </div> |
| |