-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatividade03.html
37 lines (33 loc) · 1.47 KB
/
atividade03.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Usando Tags</title>
</head>
<body>
<h4>Menu Principal</h4>
<nav>
<a href="">Página inicial</a>
<a href="">Sobre</a>
<a href="">Contato</a>
</nav>
<div>
<h3>Tipos de Equações</h3>
<dl>
<dt><h4>Equações Matemáticas</h4></dt>
<dd>Equação do 1 <sup>°</sup> grau => <strong>ax+b= 0</strong> </dd>
<dd>Equação do 2 <sup>°</sup>grau => <strong>ax <sup>2</sup>+bx+c= 0</strong></dd>
<dd>Teorema de Pitágoras => <strong>a<sup>2</sup>= b <sup>2</sup>+ c <sup>2</sup></strong></dd>
<p>*<small>Pesquise livros ou sites de Matemática para maiores informações</small></p>
</dl>
<dl>
<dt><h4>Composições Químicas</h4></dt>
<dd>Composicão da Água => <span style="color:blue;font-weight:bold"><strong>H <sub>2</sub>O</strong></span> </dd>
<dd>Composicão do Amoníaco => <span style="color:rgb(204, 84, 15);font-weight:bold"><strong>NH<sub>3</sub></strong></span></dd>
<dd>Composicão do Açúcar => <span style="color:rgb(192, 46, 180);font-weight:bold"><strong>C<sub>12</sub>H <sub>22</sub>O <sub>11</sub></strong> </span> </dd>
<p>*<small>Pesquise a Tabela Periódica para maiores informações</small></p>
</dl>
</div>
</body>
</html>