-
Notifications
You must be signed in to change notification settings - Fork 0
/
desafio7.html
32 lines (23 loc) · 1.31 KB
/
desafio7.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desafio 7</title>
<link rel="shortcut icon" href="favicon_io (1)/favicon.ico" type="image/x-icon">
</head>
<body>
<h1>Imagens Flexiveis!</h1>
<p>Fiquei com uma preguicinha de buscar e cortar imagens, então peguei as que o Guanabara disponibilizou kkkkkkkkk!</p>
<picture>
<source media="(max-width:750px )" srcset="https://raw.githubusercontent.com/gustavoguanabara/html-css/master/desafios/modulo-01/d007/imagens/paisagem-p.png" type="image/png">
<source media="(max-width: 1000px )" srcset="https://raw.githubusercontent.com/gustavoguanabara/html-css/master/desafios/modulo-01/d007/imagens/paisagem-m.png" type="image/png">
<img src="https://raw.githubusercontent.com/gustavoguanabara/html-css/master/desafios/modulo-01/d007/imagens/paisagem-g.png" alt="Imagem flexivel">
</picture>
<p>
<a href="desafio6.html"><--</a>
<a href="desafio8.html"><img src="https://play-lh.googleusercontent.com/2Hryhxm5BrraN_Ozi2as6hJqzGfA2EAIQZoqzZlKzx1nLWAvgcZAYo_QuL9spmIfRQ=w240-h480-rw" alt="to be continued"></a>
</p>
</body>
</html>