Practice Exercise Two

Question 1 :
Fill in the attribute for anchor tag
<a = 'page2.html' >click here</a>
Question 2 :
Fill correctly for unordered list
<ul>
             I will be displayed in bullets 
          
Question 3 :
How will you make a link to open in new tab
<a href="newpage.html" target= " "> Click Here </a>
Question 4 :
Create an ordered list
            
                <li> Milk </li>
                <li> Vegitables </li>
                <li> Meat </li>
            
          
Question 5 :
Create an un-ordered or bulleted list
            
                <li> Milk </li>
                <li> Vegitables </li>
                <li> Meat </li>
            
          
Question 6 :
For Nested Unordered List within ordered list
             <ol>
                 <li>Meat
                    <ul>
                        <li>Chicken</li>
                        <li>Beef</li>
                        <li>Mutton</li>
                        <li>Fish</li>
                    
                    
                 <li>Eggs</li>
             </ol>  
          
Question 7 :
Create a descriptive list
          
              <dt> Coffee </dt>
                <dd> Black and Hot </dd>
              <dt> Milk </dt>
                <dd> White and Sweet </dd>
          </dl>
          
Question 8 :
Fill in the blank for descriptive list
            <dl>
               Coffee </dt>
                <dd> Black and Hot 
            <dl>  
          
Question 9 :
Fill the blanks properly for bulleted list
<ul> <li style = "color: red"> Abrar Hussain
Question 10 :
How many types of lists are there in HTML?