1. <p>
  2.     <h1>October 1st</h1>
  3.     This is my first time learning <strong>html</strong>.<br>
  4.     It might be hard but <q>Practice makes perfect!</q>
  5. </p>
  6.  
  7. <p>
  8.     I wonder what this <button>awesome button </button> does.<br>
  9.     My <em>shopping</em> list:
  10.     <ul>
  11.         <li>Soda</li>
  12.         <li>Eggs</li>
  13.         <li>Milk</li>
  14.     </ul>
  15.  
  16.     <table>
  17.         <tr>
  18.             <td>Number</td>
  19.             <td>Question</td>
  20.             <td>Answer</td>
  21.         </tr>
  22.         <tr>
  23.             <td>1</td>
  24.             <td>What is the capital of Texas?</td>
  25.             <td>Austin</td>
  26.         </tr>
  27.         <tr>
  28.             <td>2</td>
  29.             <td>What is 2+2?</td>
  30.             <td>4</td>
  31.         </tr>
  32.     </table>
  33. </p>