diff --git a/D-poo-avancee.md b/D-poo-avancee.md
index af60ee63cee46b16185b6d7bdc1c833f661c6551..2e90b20896d1bbb8265e951f2d5c73a33889e0e5 100644
--- a/D-poo-avancee.md
+++ b/D-poo-avancee.md
@@ -63,17 +63,17 @@ _**L'objectif de cet exercice est d'utiliser une classe à l'intérieur d'une au
 	... le code HTML généré sera :
 	```html
 	<article class="pizzaThumbnail">
-			<a href="https://images.unsplash.com/photo-1532246420286-127bcd803104?fit=crop&w=500&h=300">
-				<img src="https://images.unsplash.com/photo-1532246420286-127bcd803104?fit=crop&w=500&h=300" />
-				<section>
-					<h4>Regina</h4>
-					<ul>
-						<li>Prix petit format : 6.50 €</li>
-						<li>Prix grand format : 9.95 €</li>
-					</ul>
-				</section>
-			</a>
-		</article>
+		<a href="https://images.unsplash.com/photo-1532246420286-127bcd803104?fit=crop&w=500&h=300">
+			<img src="https://images.unsplash.com/photo-1532246420286-127bcd803104?fit=crop&w=500&h=300" />
+			<section>
+				<h4>Regina</h4>
+				<ul>
+					<li>Prix petit format : 6.50 €</li>
+					<li>Prix grand format : 9.95 €</li>
+				</ul>
+			</section>
+		</a>
+	</article>
 	```
 	... et le rendu obtenu dans la page sera celui-ci :