Add 3 files
Browse files- README.md +7 -5
- index.html +69 -19
- prompts.txt +0 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|