-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposicao.html
More file actions
33 lines (30 loc) · 964 Bytes
/
composicao.html
File metadata and controls
33 lines (30 loc) · 964 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Exercício de Composição</title>
<link rel="stylesheet" href="composicao.css">
</head>
<body>
<div class="base">
<header>
<h1>Comunicações Digitais e Internet</h1>
<p>Ciências da Comunicação, U.Porto</p>
</header>
<section class="bloco1">
<h2>Bloco 1</h2>
</section>
<section class="bloco2">
<h2>Bloco 2</h2>
<img src="http://placekitten.com/g/100/75" width="100" height="75" id="image">
<p>
Texto, texto, texto e texto do bloco 2. Mais texto, texto, texto,
texto e texto do bloco 2.</p>
<p>Mais algum texto encaixado no bloco 2.</p>
</section>
<section class="bloco3">
<h2>Bloco 3</h2>
</section>
</div>
<!--Encerra o div da classe base iniciado antes. -->
</body>
</html>