<caption>
				
                
					
						The <caption> creates a caption for a table
					
					
                 
				
                    Syntax
						
							<table>
							     <caption>Monthly savings</caption>
							     <tr>
								     <th>Month</th>
								     <th>Savings</th>
							     </tr>
							     <tr>
								     <td>January</td>
								     <td>$100</td>
							     </tr>
							     <tr>
								     <td>February</td>
								     <td>$115</td>
							     </tr>
							</table>
						
						
					Example
					
					  Monthly savings
					  
						| Month | Savings | 
					  
						| January | $100 | 
					  
						| February | $115 | 
					
                 				
             
			
						
			<cite>
				
                
					
						The <cite> element defines the title of a work (e.g. a book, a song, a movie, a TV show, a painting, a sculpture, etc.)
					
					
                 
				
                    Syntax
						
							<img src="img01.jpg" width="220" height="277" alt="alt text">
							<p><cite>title</cite> by Joe Dokes. Painted in 1066.</p>
						
						
					Example
					
						 
						The Scream by Edward Munch. Painted in 1893.
					 
                 				
             
			
						
			<code>
				
                
					
						The <code> element defines a block of computer code
					
					
                 
				
                    Syntax
						
							<code>
							  var x = 5;
							</code>
						
						
					Example
					
						
							var x = 5;