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

exercicios feitos html #54

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
32 changes: 32 additions & 0 deletions exercicio1/exercicio1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="Pt-br">

<head>

<style type="text/css">
body {
color: black;
}
</style>

<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>Exercício 1</title>
</head>

<body>
<h1>Conteúdo do curso</h1>
<h2>Módulo 1</h2>
<p><i>Fundamentos JS</i></p>
<p>Introdução ao desenvolvimento web</p>
<h2>Módulo 2</h2>
<p><b>Front-end</b> com react</p>
<h2>Módulo 3</h2>
<p><u>Backend</u></p>
<h2>Módulo 4</h2>
<p>Testes e <i><b>deploy</b></i></p>

</body>

</html>
41 changes: 41 additions & 0 deletions exercicio2/exercício2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
body {
color: black;
}
</style>

<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>Exercício 2</title>
</head>
<body>
<h1>Detalhes dos conteúdos do modulo 1</h1>
<ol>
<h2><b><li>JavaScript</li></b></h2>
<ul>
<b><li>Variáveis</li></b>
<b><li>Operadores</li></b>
<b><li>Funções</li></b>
<b><li>Laços e condicionais</li></b>
</ul>
<h2><b><li>HTML</li></b></h2>
<ul>
<b><li>Elementos</li></b>
<b><li>Atributos</li></b>
<b><li>Textos</li></b>
<b><li>Listas</li></b>
</ul>
<h2><b><li>CSS</li></b></h2>
<ul>
<b><li>Seletores e posições</li></b>
<b><li>Classes e Ids</li></b>
<b><li>Flex</li></b>
<b><li>Grid</li></b>
</ul>
</ol>
</body>
</html>
44 changes: 44 additions & 0 deletions exercicio3/exercicio3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
body {
color: black;
}
</style>
<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>Exercício 3</title>
</head>
<body>
<h1>Tabela de conteúdos</h1>
<Table>
<Tr>
<th><h2>Assunto</h2></th>
<th><h2>Módulo</h2></th>
<th><h2>QTD aulas</h2></th>
</Tr>
<tr>
<th scope="row"><b>HTML</b></th>
<th scope="row"><b>Intro web</b></th>
<th scope="row"><b>02</b></th>
</tr>
<tr>
<th scope="row"><b>CSS</b></th>
<th scope="row"><b>Intro web</b></th>
<th scope="row"><b>04</b></th>
</tr>
<tr>
<th scope="row"><b>Integração com APIs</b></th>
<th scope="row"><b>Front-end react</b></th>
<th scope="row"><b>04</b></th>
</tr>
<tr>
<th scope="row"><b>SQL</b></th>
<th scope="row"><b>Back-end</b></th>
<th scope="row"><b>04</b></th>
</tr>
</Table>
</body>
</html>