Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Atualizado #44

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
22 changes: 22 additions & 0 deletions exercicio1/exercicio1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!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>Exercicio 1</title>
</head>
<body>
<h1>Conteúdo do curso</h1>
<h3>Módulo 1</h3>
<p>Introdução ao desenvolvimento web</p>
<span><i>Scratch</i></span>
<h3>Módulo 2</h3>
<p><strong>Front-end</strong> com React</p>
<h3>Módulo 3</h3>
<p><u>Back-end</u></p>
<h3>Módulo 4</h3>
<p>Testes e <strong>deploy</strong></p>

</body>
</html>
36 changes: 36 additions & 0 deletions exercicio2/exercicio2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!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>Exercicio 2</title>
</head>
<body>
<h1>Detalhes dos conteúdos do Módulo 1</h1>
<ol>
<h3><li>JavaScript</li></h3>
<ul>
<li>Variáveis</li>
<li>Operadores</li>
<li>Funções</li>
<li>Laços e condicionais</li>
</ul>
<h3><li>HTML</li></h3>
<ul>
<li>Elementos</li>
<li>Atributos</li>
<li>Textos</li>
<li>Listas</li>
</ul>
<h3><li>CSS</li></h3>
<ul>
<li>Seletores e posições</li>
<li>Classes e Ids</li>
<li>Flex</li>
<li>Grid</li>
</ul>
</ol>

</body>
</html>
39 changes: 39 additions & 0 deletions exercicio3/exercicio3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!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>Exercicio 3</title>
</head>
<body>
<h1>Tabela de conteúdos</h1>
<table border="2">
<tr>
<th>Assunto</th>
<th>Módulo</th>
<th>Qtd aulas</th>
</tr>
<tr>
<td>HTML</td>
<td>Intro Web</td>
<td>02</td>
</tr>
<tr>
<td>CSS</td>
<td>Intro Web</td>
<td>04</td>
</tr>
<tr>
<td>Integração com APIs</td>
<td>Front-end React</td>
<td>04</td>
</tr>
<tr>
<td>SQL</td>
<td>Back-end</td>
<td>04</td>
</tr>
</table>
</body>
</html>