-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodulo3-5.html
More file actions
252 lines (223 loc) · 11.9 KB
/
modulo3-5.html
File metadata and controls
252 lines (223 loc) · 11.9 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Revisão da Sprint</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@800&family=Inter:wght@100;200;300;400;500;600&family=Kaushan+Script&family=Roboto:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<!--menu superior verde com logo-->
<diV>
<nav class="navbar bg-body-tertiary">
<div class="container-fluid" style="background-color: #025159;">
<a class="navbar-brand" href="#">
<img src="imagens/logo.png" alt="Bootstrap" width="200" height="80">
</a>
<!--barra de pesquisa-->
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit" style="background-color:#020D2D; color: white; border-color: #020D2D;">Pesquisar </button>
</form>
</nav>
</div>
<!--botão home-->
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<!--botão Introdução-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Introdução
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="introducao1.html">O propósito do Guia do Scrum</a></li>
<li><a class="dropdown-item" href="introducao2.html">Definição do Scrum</a></li>
</ul>
</li>
<!--botão modulo1-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Módulo 1
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="modulo1-1.html">Teoria do Scrum</a></li>
<li><a class="dropdown-item" href="modulo1-2.html">Transparência</a></li>
<li><a class="dropdown-item" href="modulo1-3.html">Inspeção</a></li>
<li><a class="dropdown-item" href="modulo1-4.html">Adaptação</a></li>
</ul>
</li>
<!--botão modulo2-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Módulo 2
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="modulo2-1.html">O Time Scrum</a></li>
<li><a class="dropdown-item" href="modulo2-2.html">O Product Owner</a></li>
<li><a class="dropdown-item" href="modulo2-3.html">O Time de Desenvolvimento</a></li>
<li><a class="dropdown-item" href="modulo2-4.html">Tamanho do Time de Desenvolvimento</a></li>
</ul>
</li>
<!--botão modulo3-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Módulo 3
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="modulo3-1.html">Eventos Scrum</a></li>
<li><a class="dropdown-item" href="modulo3-2.html">Sprint</a></li>
<li><a class="dropdown-item" href="modulo3-3.html">Reunião de Planejamento da Sprint</a></li>
<li><a class="dropdown-item" href="modulo3-4.html">Reunião Diária .</a></li>
<li><a class="dropdown-item" href="modulo3-5.html">Revisão da Sprint</a></li>
<li><a class="dropdown-item" href="modulo3-6.html">Retrospectiva da Sprint</a></li>
</ul>
</li>
<!--botão modulo4-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Módulo 4
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="modulo4-1.html">Artefatos do Scrum</a></li>
<li><a class="dropdown-item" href="modulo4-2.html">Backlog do Produto</a></li>
<li><a class="dropdown-item" href="modulo4-3.html">Backlog da Sprint</a></li>
<li><a class="dropdown-item" href="modulo4-4.html">Incremento</a>
</ul>
</li>
<!--botão modulo5-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Módulo 5
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="modulo5-1.html">Transparência do Artefato</a></li>
<li><a class="dropdown-item" href="modulo5-2.html">Definição de “Pronto”</a></li>
<li><a class="dropdown-item" href="modulo5-3.html">Conclusão</a></li>
</ul>
</li>
<!--botão teste-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Teste
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="teste1.html">Prova</a></li>
<li><a class="dropdown-item" href="teste2.html">Certificado</a></li>
</li>
</div>
</nav>
<main>
<div class="content">
<h1 style="font-family: 'Big Shoulders Display', cursive; padding-top: 50px; margin: center; text-align:center;padding-bottom: 50;"><main>
<div class="content">
<h1 style="font-family: 'Big Shoulders Display', cursive; padding-top: 50px; margin: center; text-align:center;padding-bottom: 50;">Revisão da Sprint
</h1>
<img src="imagens/modulo3-_2_.png" class="rounded mx-auto d-block" alt="imagem.png">
<p style=" font-family: 'Times New Roman', Times, serif; text-align: justify; font-size: 25px; width: 50%; margin: auto; padding-top: 100px; ">
A Revisão da Sprint é executada no final da Sprint para inspecionar o incremento e adaptar o Backlog do Produto se necessário.
Durante a reunião de Revisão da Sprint o Time Scrum e as partes interessadas colaboram sobre o que foi feito na Sprint.
Com base nisso e em qualquer mudança no Backlog do Produto durante a Sprint, os participantes colaboram nas próximas coisas que podem ser feitas para otimizar valor.
Esta é uma reunião informal, não uma reunião de status, e a apresentação do incremento destina-se a motivar e obter comentários e promover a colaboração.
</p>
<p style=" font-family: 'Times New Roman', Times, serif; text-align: justify; font-size: 25px; width: 50%; margin: auto; padding-top: 60px; ">
Esta é uma reunião time-boxed de 4 horas de duração para uma Sprint de um mês.
Para Sprints menores, este evento é usualmente menor.
O Scrum Master garante que o evento ocorra e que os participantes entendam o seu objetivo.
O Scrum Master ensina a todos a manter a reunião dentro dos limites do Time-box.
</p>
<br>
<p style=" font-family: 'Times New Roman', Times, serif; text-align: justify; font-size: 25px; width: 50%; margin: auto; padding-top: 100px; ">
A Reunião de Revisão inclui os seguintes elementos:
<br> → Os participantes incluem o Time Scrum e os Stakeholders chaves convidados pelo Product Owner;
<br> → O Product Owner esclarece quais itens do Backlog do Produto foram “Prontos” e quais não foram “Prontos”;
<br> → O Time de Desenvolvimento discute o que foi bem durante a Sprint, quais problemas ocorreram dentro da Sprint, e como estes problemas foram resolvidos;
<br> → O Time de Desenvolvimento demonstra o trabalho que está “Pronto” e responde as questões sobre o incremento;
<br> → O Product Owner discute o Backlog do Produto tal como está. Ele (ou ela) projeta as prováveis datas de conclusão baseado no progresso até a data (se necessário);
<br> → O grupo todo colabora sobre o que fazer a seguir, e é assim que a Reunião de Revisão da Sprint fornece valiosas entradas para a Reunião de Planejamento da próxima Sprint;
<br> → Análise de como o mercado ou o uso potencial do produto pode ter mudado e o que é a coisa mais importante a se fazer a seguir; e,
<br> → Análise da linha do tempo, orçamento, potenciais capacidades, e mercado para a próxima versão esperada do produto.
</p>
<p style=" font-family: 'Times New Roman', Times, serif; text-align: justify; font-size: 25px; width: 50%; margin: auto; padding-top: 100px; ">
O resultado da Reunião de Revisão da Sprint é um Backlog do Produto revisado que define o provável Backlog do Produto para a próxima Sprint.
O Backlog do Produto pode também ser ajustado completamente para atender novas oportunidades.
</p>
</div>
</main>
</div>
<footer style="bottom: -400px;">
<footer>
<div id="footer_content">
<div id="footer_contacts">
<h1>Nossas Redes</h1>
<p>Fique por dentro</p>
<div id="footer_social_media">
<a href="https://github.com/ScrumerDataAPI/API" class="footer-link" id="github">
<i class="fa-brands fa-github" style="color: #fafafa;"></i>
</a>
<a href="https://pt-br.facebook.com/" class="footer-link" id="facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="https://www.whatsapp.com/?lang=pt_br" class="footer-link" id="whatsapp">
<i class="fa-brands fa-whatsapp"></i>
</a>
</div>
</div>
<ul class="footer-list">
<li>
<h3>Sobre</h3>
</li>
<li>
<a href="#" class="footer-link">Nossa História</a>
</li>
<li>
<a href="#" class="footer-link">Inovação</a>
</li>
<li>
<a href="#" class="footer-link">Equipe Técnica</a>
</li>
</ul>
<ul class="footer-list">
<li>
<h3>Cursos</h3>
</li>
<li>
<a href="#" class="footer-link">Scrum</a>
</li>
<li>
<a href="https://github.com/users/ScrumerDataAPI/projects/12/views/4" class="footer-link">Kanban</a>
</li>
<li>
<a href="https://github.com/ScrumerDataAPI/API" class="footer-link">GitHub</a>
</li>
</ul>
<div id="footer_subscribe">
<h3>Inscreva-se</h3>
<p>
Entre com seu email para receber nossas novidades
</p>
<div id="input_group">
<input type="email" id="email">
<button>
<i class="fa-regular fa-envelope"></i>
</button>
</div>
</div>
</div>
<div id="footer_copyright">
©
2023 all rights reserved
</div>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
</html>'