Rwhehhehe commited on
Commit
c7130d4
·
verified ·
1 Parent(s): 32a65c5

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +69 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Parte 1
3
- emoji:
4
- colorFrom: blue
5
- colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: parte-1
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,69 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="pt-br">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Jornal Oliveira</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background-color: #f3fdf3;
11
+ margin: 0;
12
+ padding: 0;
13
+ }
14
+ header {
15
+ background-color: #2d662d;
16
+ color: white;
17
+ padding: 20px;
18
+ text-align: center;
19
+ font-size: 28px;
20
+ font-family: "Engravers MT", "Old English Text MT", serif;
21
+ }
22
+ nav {
23
+ display: flex;
24
+ justify-content: center;
25
+ background-color: #4CAF50;
26
+ padding: 10px;
27
+ }
28
+ nav button {
29
+ background-color: white;
30
+ border: 1px solid #4CAF50;
31
+ padding: 10px 20px;
32
+ margin: 0 10px;
33
+ cursor: pointer;
34
+ font-weight: bold;
35
+ }
36
+ .notification {
37
+ background-color: #fff8c4;
38
+ padding: 10px;
39
+ text-align: center;
40
+ font-size: 14px;
41
+ border-bottom: 1px solid #ccc;
42
+ }
43
+ .content {
44
+ padding: 20px;
45
+ }
46
+ .hidden {
47
+ display: none;
48
+ }
49
+ </style>
50
+ </head>
51
+ <body>
52
+ <header>Jornal Oliveira</header>
53
+ <div class="notification">
54
+ Site em desenvolvimento. Qualquer problema entre em contato no Instagram <strong>@jornal_oliveira</strong> ou envie uma sugestão.
55
+ </div>
56
+ <nav>
57
+ <button onclick="showSection('inicio')">Início</button>
58
+ <button onclick="showSection('avaliar')">Avaliar</button>
59
+ <button onclick="showSection('sugerir')">Sugestão</button>
60
+ <button onclick="showSection('participar')">Participar</button>
61
+ <button onclick="showSection('login')">Login</button>
62
+ </nav>
63
+ <div class="content">
64
+ <div id="inicio">
65
+ <h2>Últimas Notícias</h2>
66
+ <input type="text" placeholder="Pesquisar autor ou categoria..." style="width: 100%; padding: 10px;">
67
+ <p>As últimas notícias serão exibidas aqui...</p>
68
+ </div>
69
+
prompts.txt ADDED
File without changes