Fix(DPxAI): Fix sections order

This commit is contained in:
oumaimafisaoui 2024-08-28 13:51:30 +01:00 committed by Oumaima Fisaoui
parent 80d17b2438
commit 88e5054db1
1 changed files with 4 additions and 4 deletions

View File

@ -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. - Set its class name to words, as defined in the CSS.
- Use the append method to add the new div inside the torso element. - 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: ### Code Example:
```js ```js
@ -88,6 +84,10 @@ const handleSpeakClick = (event) => {
//...Here //...Here
``` ```
### Expected result
You can see an example of the expected result [here](https://youtu.be/At4BhyzMxzw)
**`Prompt Example:`** **`Prompt Example:`**
- "How can I add and remove text in an element with a button click in JavaScript?" - "How can I add and remove text in an element with a button click in JavaScript?"