-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
288 lines (249 loc) · 9.02 KB
/
index.html
File metadata and controls
288 lines (249 loc) · 9.02 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Estudo dos Verbos Regulares - 6º Ano</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
color: #333;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 15px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
color: #1a2a6c;
font-size: 2.8rem;
margin-bottom: 15px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.school-info {
color: #b21f1f;
font-size: 1.4rem;
margin-bottom: 10px;
font-weight: 600;
}
.teacher-info {
color: #fdbb2d;
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 20px;
}
.content {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
margin-bottom: 40px;
}
.intro-card {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 15px;
padding: 30px;
flex: 1;
min-width: 300px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.intro-card h2 {
color: #1a2a6c;
margin-bottom: 20px;
font-size: 1.8rem;
border-bottom: 2px solid #fdbb2d;
padding-bottom: 10px;
}
.intro-card p {
line-height: 1.6;
margin-bottom: 15px;
font-size: 1.1rem;
}
.activities {
display: flex;
flex-direction: column;
gap: 25px;
flex: 1;
min-width: 300px;
}
.activity-card {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 15px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: transform 0.3s, box-shadow 0.3s;
}
.activity-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.activity-card h3 {
color: #1a2a6c;
margin-bottom: 15px;
font-size: 1.5rem;
}
.activity-card p {
line-height: 1.6;
margin-bottom: 20px;
}
.btn {
display: inline-block;
background: linear-gradient(to right, #1a2a6c, #b21f1f);
color: white;
padding: 12px 25px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
text-align: center;
}
.btn:hover {
background: linear-gradient(to right, #b21f1f, #fdbb2d);
transform: scale(1.05);
}
.btn-quiz {
background: linear-gradient(to right, #1a2a6c, #2c5aa0);
}
.btn-quiz:hover {
background: linear-gradient(to right, #2c5aa0, #3d7bd9);
}
.conjugations {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 15px;
padding: 30px;
margin-bottom: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.conjugations h2 {
color: #1a2a6c;
text-align: center;
margin-bottom: 25px;
font-size: 1.8rem;
}
.conjugation-types {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.conjugation-type {
background: linear-gradient(135deg, #1a2a6c, #b21f1f);
color: white;
padding: 20px;
border-radius: 10px;
flex: 1;
min-width: 250px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.conjugation-type h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.conjugation-type p {
font-size: 1.1rem;
}
footer {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 15px;
padding: 20px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
margin-top: auto;
}
footer p {
color: #1a2a6c;
font-weight: 600;
}
@media (max-width: 768px) {
h1 {
font-size: 2.2rem;
}
.school-info, .teacher-info {
font-size: 1.2rem;
}
.content {
flex-direction: column;
}
.conjugation-types {
flex-direction: column;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Estudo dos Verbos Regulares da Língua Portuguesa - 6º Ano</h1>
<div class="teacher-info">Professora Elaine D'Adderio Fraga - Língua Portuguesa</div>
</header>
<div class="content">
<div class="intro-card">
<h2>Bem-vindos ao Mundo dos Verbos!</h2>
<p>Os verbos são palavras que indicam ações, estados ou fenômenos. Neste espaço, vamos explorar os verbos regulares da língua portuguesa, que seguem padrões fixos de conjugação.</p>
<p>Os verbos regulares são classificados em três conjugações, de acordo com a terminação do infinitivo:</p>
<ul style="margin-left: 20px; margin-bottom: 15px;">
<li>1ª conjugação: verbos terminados em <strong>-AR</strong></li>
<li>2ª conjugação: verbos terminados em <strong>-ER</strong></li>
<li>3ª conjugação: verbos terminados em <strong>-IR</strong></li>
</ul>
<p>Aqui você encontrará atividades interativas para praticar e consolidar seus conhecimentos sobre a conjugação verbal no modo indicativo.</p>
</div>
<div class="activities">
<div class="activity-card">
<h3>Exercício de Conjugação Verbal - Modo Indicativo</h3>
<p>Pratique a conjugação de verbos regulares em todos os tempos do modo indicativo. Digite o radical e as terminações para formar os verbos corretamente.</p>
<a href="https://dadderiofraga.github.io/verbo1/" class="btn">Acessar Exercício</a>
</div>
<div class="activity-card">
<h3>Teste de Conjugação Verbal - Modo Indicativo</h3>
<p>Avalie seus conhecimentos sobre conjugação verbal com este teste interativo que fornece pontuação ao final.</p>
<a href="https://dadderiofraga.github.io/verbo2/" class="btn btn-quiz">Fazer Teste</a>
</div>
</div>
</div>
<div class="conjugations">
<h2>As Três Conjugações dos Verbos Regulares</h2>
<div class="conjugation-types">
<div class="conjugation-type">
<h3>1ª Conjugação</h3>
<p>Verbos terminados em <strong>-AR</strong></p>
<p>Exemplos: amar, falar, cantar, estudar</p>
</div>
<div class="conjugation-type">
<h3>2ª Conjugação</h3>
<p>Verbos terminados em <strong>-ER</strong></p>
<p>Exemplos: comer, beber, correr, vender</p>
</div>
<div class="conjugation-type">
<h3>3ª Conjugação</h3>
<p>Verbos terminados em <strong>-IR</strong></p>
<p>Exemplos: partir, abrir, dormir, sentir</p>
</div>
</div>
</div>
<footer>
<p>Desenvolvido para as aulas de Língua Portuguesa - 6º Ano</p>
</footer>
</div>
</body>
</html>