File size: 11,932 Bytes
c7130d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!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>