1. The <html> opening tag is used to declare the start of the webpage. 
   
    
   
  
    
      2. The opening <body> tag.
    
    
   
  
    
    3. The <textarea> tag defines a multi-line text input control. A text area can hold an unlimited number of characters, and the text renders in a fixed-width font (usually Courier).
    
    
   
  
    
        4. Add text to inside the textarea. 
    
    
   
  
    
    5. Type: </textarea>. This is closing the textarea open tag on line 3.
    
    
   
  
    
    6. Closing </body> is used to close the opening <body> tag on line 2.  
    
    
   
  
    
    7. The HTML closing/end tag </html> declares the end of the document.  Once you are done you will see the webpage you created.