Skip to content
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
48 changes: 25 additions & 23 deletions exercicios/5-exercicio-projeto-aula/index.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
<!DOCTYPE html>
<html lang="pt-br">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Exercício Git</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<link rel="stylesheet" href="./css/style.css" />
</head>

<body>
<body>
<div>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Usuário do GitHub</th>
</tr>
</thead>
<tbody>
<td>Paula</td>
<td>itsalle</td>
</tbody>
</table>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Usuário do GitHub</th>
</tr>
</thead>
<tbody>
<td>Paula</td>
<td>itsalle</td>
</tbody>
<tbody>
<td>Sâmara</td>
<td>Snalbuquerque</td>
</tbody>
</table>
</div>
</body>

</html>
</body>
</html>
78 changes: 40 additions & 38 deletions exercicios/8-exercicio-projeto-casa/index.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,45 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./css/style.css" />
<title>Git</title>
</head>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/style.css">
<title>Git</title>
</head>

<body>
<h1>Aula Git e Github</h1>
<h2>Turma Front-end Online 9</h2>
<section id="exemplo">
<h3>Professora</h3>
<div class="container">

<div class="container__aluna">
<a href="https://github.com/itsalle" target="_blank">
<img class="container__aluna-img"
src="https://avatars2.githubusercontent.com/u/41296983?s=460&u=d69e452fb89212415aca4769125d7efb7fc52727&v=4"
alt="Paula Allemand">
</a>
<p>Paula Allemand</p>
<body>
<h1>Aula Git e Github</h1>
<h2>Turma Front-end Online 9</h2>
<section id="exemplo">
<h3>Professora</h3>
<div class="container">
<div class="container__aluna">
<a href="https://github.com/itsalle" target="_blank">
<img
class="container__aluna-img"
src="https://avatars2.githubusercontent.com/u/41296983?s=460&u=d69e452fb89212415aca4769125d7efb7fc52727&v=4"
alt="Paula Allemand"
/>
</a>
<p>Paula Allemand</p>
</div>
</div>
</div>
</section>
<section id="alunas">
<h3>Alunas</h3>
<div class="container">

<div class="container__aluna">
<a href="#" target="_blank">
<img class="container__aluna-img" src="#" alt="Exemplo">
</a>
<p>Exemplo</p>
</section>
<section id="alunas">
<h3>Alunas</h3>
<div class="container">
<div class="container__aluna">
<a href="https://github.com/snalbuquerque" target="_blank">
<img
class="container__aluna-img"
src="https://avatars.githubusercontent.com/u/86380218?v=4"
alt="Sâmara Nascimento"
/>
</a>
<p>Sâmara Nascimento</p>
</div>
</div>
</div>
</section>
</body>

</html>
</section>
</body>
</html>
82 changes: 82 additions & 0 deletions git status
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
diff --git a/exercicios/5-exercicio-projeto-aula/index.html b/exercicios/5-exercicio-projeto-aula/index.html
index ebcee8a..6d17369 100644
--- a/exercicios/5-exercicio-projeto-aula/index.html
+++ b/exercicios/5-exercicio-projeto-aula/index.html
@@ -1,33 +1,31 @@
<!DOCTYPE html>
<html lang="pt-br">
-
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Exercício Git</title>
- <link rel="stylesheet" href="./css/style.css">
-</head>
+ <link rel="stylesheet" href="./css/style.css" />
+ </head>

-<body>
+ <body>
<div>
- <table>
- <thead>
- <tr>
- <th>Nome</th>
- <th>Usuário do GitHub</th>
- </tr>
- </thead>
- <tbody>
- <td>Paula</td>
- <td>itsalle</td>
- </tbody>
- <tbody>
- <td>Sâmara</td>
- <td>Snalbuquerque</td>
- </tbody>
- </table>
+ <table>
+ <thead>
+ <tr>
+ <th>Nome</th>
+ <th>Usuário do GitHub</th>
+ </tr>
+ </thead>
+ <tbody>
+ <td>Paula</td>
+ <td>itsalle</td>
+ </tbody>
+ <tbody>
+ <td>Sâmara</td>
+ <td>Snalbuquerque</td>
+ </tbody>
+ </table>
</div>
-</body>
-
-</html>
\ No newline at end of file
+ </body>
+</html>
diff --git a/exercicios/8-exercicio-projeto-casa/index.html b/exercicios/8-exercicio-projeto-casa/index.html
index 3dfd3b5..99ed075 100644
--- a/exercicios/8-exercicio-projeto-casa/index.html
+++ b/exercicios/8-exercicio-projeto-casa/index.html
@@ -31,10 +31,10 @@
<div class="container">

<div class="container__aluna">
- <a href="#" target="_blank">
- <img class="container__aluna-img" src="#" alt="Exemplo">
+ <a href="https://github.com/snalbuquerque" target="_blank">
+ <img class="https://avatars.githubusercontent.com/u/86380218?v=4" src="#" alt="Sâmara Nascimento">
</a>
- <p>Exemplo</p>
+ <p>Sâmara Nascimento</p>
</div>
</div>
</section>