LAB 2 RECALL


 1. Write the markup language code to display your name in the largest-size heading element.


 <h1>AMIRAH & FARIHA</h1>



  2. Write the markup language code for unordered list to display the days of the week.


<ul>
  <li>Sunday</li>
  <li>Monday</li>
  <li>Tuesday</li>
  <li>Wednesday</li>
  <li>Thursday</lI>
  <li>Friday</li>
  <li>Saturday</li>
</ul>  



  3. Write the markup language code for an ordered list that uses uppercase letters to order the items.  This ordered list will display the following : Spring, Summer, Fall and Winter.


<ol>
  <li>SPRING</li>
  <li>SUMMER</li>
  <li>FALL</li>
  <li>WINTER</li>
</ol>  


  4. Think of a favourite quote by someone you admire.  Write the HTML code to display the person's name in a heading and the quote in a blockquote.  



-<h1> ALBERT EINSTEIN </h1>
<blockquote>
“There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle.” 
</blockquote>



Comments

Popular Posts