exercice_2/index.html
2021-11-30 06:58:11 -08:00

22 lines
No EOL
547 B
HTML

<!DOCTYPE html>
<html lang="en">
<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>exo2</title>
<style>
.container{
display: flex;
justify-content: center;
background-color: #ff4400;
}
</style>
</head>
<body>
<p>Bruno était loh!</p>
<div class="container">
<img class="animal" src="images/ecureuil_volant.jpeg" width="200">
</div>
</body>
</html>