Skip to content

Commit 1159d31

Browse files
authored
Update README.md
1 parent e2f3dc7 commit 1159d31

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

exercises/07-Create-a-Basic-HTML/README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,18 @@ Let's continue using string concatenation to generate HTML...
88

99
## 📝 Instructions:
1010

11-
1. Create a variable **html_document**.
11+
1. Create the variable `html_document`.
1212

13-
2. The code on the left contains 8 variables with different string values, please use the variables concatenating them together to set the value of the variable **html_document**
14-
a new string that has the content of a typical HTML document (with the HTML tags in the
15-
right order).
13+
2. The code on the left contains 8 variables with different string values, please use the variables concatenating them together to set the value of the variable `html_document`
14+
to a new string that has the content of a typical HTML document (with the HTML tags in the right order).
1615

17-
3. Then, print the value of **html_document** on the console.
16+
3. Then, print the value of `html_document` on the console.
1817

1918
## 💡 Hint:
2019

2120
+ Expected Result:
2221

23-
```sh
24-
22+
```html
2523
<html><head><title></title></head><body></body></html>
2624
```
2725

0 commit comments

Comments
 (0)