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

html exercicioos complementares #61

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
}
26 changes: 26 additions & 0 deletions exercicio1/exercicio1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>exercicio1</title>
</head>
<body>
<h1>conteudo do curso</h1>
<h2>modulo 1</h2>
<p><i>fundamentos js</i></p>
<p>introducao ao desenvolvimento web</p>

<h2>modulo 2</h2>

<p><b>front-end</b> com react</p>


<h2>modulo 3</h2>
<p><i>backend</i></p>

<h2> modulo 4</h2>
<p>testes e <i><b>deploy</b></i></p>

</body>
</html>
44 changes: 44 additions & 0 deletions exercicio2/exercicio2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>exercicio 2</title>
</head>
<body>
<h1>detalhes dos conteudos do modulo 1</h1>

<ol>
<li> javaScript
<ul>
<li>variaveis</li>
<li>operadores</li>
<li>funcoes</li>
<li>condicionais</li>

</ul>

</li>
<li>html
<ul>
<li>elementos</li>
<li>atributos</li>
<li>textos</li>
<li>listas</li>

</ul>
</li>
<li>css
<ul>
<li>seletores e posicoes</li>
<li>classes e id</li>
<li>flex</li>
<li>grid</li>

</ul>

</li>
</ol>

</body>
</html>
58 changes: 58 additions & 0 deletions exercicio3/exercicio3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>exercicio3</title>
</head>
<body>
<h1>tabela de conteudos</h1>
<table border = '1'>
<tr>
<th>assunto</th>
<th>modulo</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>integracao com apis</td>
<td>front-end React</td>
<td>04</td>

</tr>

<tr>
<td>sql</td>
<td>backend</td>
<td>04</td>

</tr>










</table>
</body>
</html>