tutorial |
---|
Let's continue using string concatenation to generate HTML...
-
Create the variable
html_document
. -
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
to a new string that has the content of a typical HTML document (with the HTML tags in the right order). -
Then, print the value of
html_document
on the console.
- Expected Result:
<html><head><title></title></head><body></body></html>