From 88e5054db1fb4d57331859f3b36c8dcc47748f69 Mon Sep 17 00:00:00 2001 From: oumaimafisaoui Date: Wed, 28 Aug 2024 13:51:30 +0100 Subject: [PATCH] Fix(DPxAI): Fix sections order --- subjects/DPxAI/first-hello/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/DPxAI/first-hello/README.md b/subjects/DPxAI/first-hello/README.md index 4b5bfc79e..5df4169a0 100644 --- a/subjects/DPxAI/first-hello/README.md +++ b/subjects/DPxAI/first-hello/README.md @@ -54,10 +54,6 @@ In the JS file, like in the previous exercise, get the HTML `button` element wit - Set its class name to words, as defined in the CSS. - Use the append method to add the new div inside the torso element. -### Expected result - -You can see an example of the expected result [here](https://youtu.be/At4BhyzMxzw) - ### Code Example: ```js @@ -88,6 +84,10 @@ const handleSpeakClick = (event) => { //...Here ``` +### Expected result + +You can see an example of the expected result [here](https://youtu.be/At4BhyzMxzw) + **`Prompt Example:`** - "How can I add and remove text in an element with a button click in JavaScript?"