Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

tutorial https://www.youtube.com/watch?v=j14V-eS8mRg

07 Create a basic HTML

Let's continue using string concatenation to generate HTML...

📝 Instructions:

  1. Create a variable html_document.

  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 a new string that has the content of a typical HTML document (with the HTML tags in the right order).

  3. Then, print the value of html_document on the console.

💡 Hint:

  • Expected Result:
<html><head><title></title></head><body></body></html>