Skip to content

Commit

Permalink
Created challenge_007 folder
Browse files Browse the repository at this point in the history
Added the final code
  • Loading branch information
mateusadada authored Feb 29, 2024
1 parent 3a1066f commit 081b495
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
Binary file added html-css/challenges/challenge_007/favicon.ico
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions html-css/challenges/challenge_007/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="pt-br">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Challenge 007</title>
</head>

<body>
<h1>Imagem flexível</h1>
<p>Você está vendo a imagem completa? Experimente ampliar o tamanho da sua janela para aproveitar a melhor experiência &#x1F92F</p>

<picture>
<source media="(max-width: 770px)" srcset="imagens/paisagem-p.png" type="image/png">
<source media="(max-width: 1250px)" srcset="imagens/paisagem-m.png" type="image/png">
<img src="imagens/paisagem-g.png" alt="Mulher com os braços abertos">
</picture>
</body>
</html>

0 comments on commit 081b495

Please sign in to comment.