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
4 changes: 2 additions & 2 deletions bloco_3/dia_1/ex1_bl3.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ <h1>Exercícios</h1>
   <li><a href ="#fla">Flávio Franco</a></li>
</ul>

<div><img src ="https://en.wikipedia.org/wiki/Dawg_Pound#/media/File:2015_Dawg_Pound.png" alt="Mad Dogg"></div>
<img src ="https://en.wikipedia.org/wiki/Dawg_Pound#/media/File:2015_Dawg_Pound.png" alt="Mad Dogg" width ="250px">

<div><img src ="/trybe/trybe-exercises/bloco_3/dia_1/flp.jpg" width =300px alt="Felipe"></div>
<div><img src ="flp.jpg" width ="300px" alt="Felipe"></div>

<p id ="eli">Elisa ctrlctrlctrlctrlctrlctrlctrlctrl</p>
<p id ="and">André ctrlctrlctrlctrlctrlctrl</p>
Expand Down
67 changes: 67 additions & 0 deletions bloco_3/dia_2/exercicios3.2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>HTML</title>
<link rel="stylesheet" type="text/css" href="style.css">

<style>
/* h1 {
font-size: 65px;
color: orange;
font-family: sans-serif;
}
body {
font-size: 16px;
font-style: italic;
text-align: justify;
}
ul {
color: rgb(255, 400, 200);
}
.cor_favorita {
background-color: red;
text-decoration: underline;
}
p {
font-weight:600;
font-size: 3em;
line-height: 40px;
}
#amrl {
background-color: yellow;
}
#vmlh {
background-color: tomato;
}
#mrrm {
background-color: brown;
}
*/
</style>

</head>
<body>
<h1>Exercícios 3.2</h1>
<p class="cor_favorita">Qual é a sua cor favorita?</p>
<ul class="cor_favorita">
<li id="amrl">Amarelo</li>
<li id="vmlh">Vermelho</li>
<li id="mrrm">Marrom</li>
</ul>

<!-- Exercícios
- Modifique o tamanho do h1 para 65 pixels
- Modifique a cor do texto do h1 para laranja
- Modifique a cor de fundo da lista não ordenada
- Crie uma classe para modificar a cor de fundo da tag p e da ul ao mesmo tempo
Exercícios
1 - Modifique o família do h1 para sans-serif
2 - Deixe o parágrafo com o font-weight 600
3 - Modifique o font-size do body para 16px
4 - Coloque o tamanho do parágrafo com o tamanho de 3 vezes o padrão do body
5 - Explore as propriedades font-style, line-height, text-align e text-decoration
6 - Troque a cor de fundo de cada item da lista para a cor correspondente ao texto
-->
</body>
</html>
31 changes: 31 additions & 0 deletions bloco_3/dia_2/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
h1 {
font-size: 65px;
color: orange;
font-family: sans-serif;
}
body {
font-size: 16px;
font-style: italic;
text-align: justify;
}
ul {
color: rgb(255, 400, 200);
}
.cor_favorita {
background-color: rgb(224, 201, 201);
text-decoration: underline;
}
p {
font-weight:600;
font-size: 3em;
line-height: 40px;
}
#amrl {
background-color: yellow;
}
#vmlh {
background-color: tomato;
}
#mrrm {
background-color: brown;
}