Skip to content

Latest commit

 

History

History
 
 

07-Create-a-Basic-HTML

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
tutorial

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>