Ict HTML Revision
Ict HTML Revision
1. Define an inserting table and write suitable tags in the given space.
   ………………………………………………………………………………………
      Tables in html are used to display data in a tabular format
   ………………………………………………………………………………………
   ………………………………………………………………………………………
        In a table data is represented in the form of rows and columns
   ………………………………………………………………………………………
   To create tables in HTML, you use the following tags:
                                           <table>...</table>
     To create the structure of a table: ……………………………………………
                                        <caption>...</caption>
     To give the caption to a table: ………………………………………………..
                                <tr>..</tr>
     To create a table row: …………………………………………………………
                                            <th>..</th>
     To give a column heading in a table: …………………………………………
                                                                        <td>...</td>
     To create a cell (or column) that stores table data inside a row: ………………
2. Refer the shown example and complete the following table tag <TABLE>
   attributes:
   <HTML>
   <BODY>
   <TABLE height = “50%” width = “50%” align = “center” bgcolor = “blue”
   border = “1” bordercolor = “grey” cellpadding = “10” cellspacing = “10”>
   </TABLE>                                                   Caption               Table
                                                                                    header
   </BODY>
   </HTML>                                          Table 1
                              Adm. No.                Name              Marks
       Table                                                                              Table
                                V10120                Àmit               77
      column                                                                              rows
                                V08761               Sarah               87
TERM 2                                                                                            1
MIS                                          ICT                      GRADE 7
      value or pixel.
                       height
  B. It specifies the …………………………of a table by using either a percentage
      value or pixel.
                   cellspacing
  C. It specifies ………………………….between the cells, that is, the width of the
TERM 2                                                                           2
MIS                                    ICT                         GRADE 7
3. Write html code for the given table using <TR> and <TD> tags.
…………………………………………………………………………………………
  <html>
…………………………………………………………………………………………
  <table height="30%" width="30%" cellpadding="5" cellspacing="
…………………………………………………………………………………………
  5" bgcolor="orange" bordercolor="green" border="2">
…………………………………………………………………………………………
  <tr>
…………………………………………………………………………………………
  <td>V10120</td>
…………………………………………………………………………………………
  <td>Eshana Singh</td>
  <td>77</td>
…………………………………………………………………………………………
  </tr>
…………………………………………………………………………………………
  <tr>
…………………………………………………………………………………………
  <td>V0761</td>
…………………………………………………………………………………………
  <td>Sarah Matthew</td.
…………………………………………………………………………………………
  <td.87</td>
  </tr>
…………………………………………………………………………………………
  </table>
…………………………………………………………………………………………
  </html>
…………………………………………………………………………………………
…………………………………………………………………………………………
…………………………………………………………………………………………
…………………………………………………………………………………………
………………………………………………………………………………………….
TERM 2                                                                       3
    MIS                                                ICT       GRADE 7
    TERM – 3                                                                   1
MIS                                                   ICT    GRADE 7
2. Refer the table and write html code in the given space.
              Table border is 1, Cellpadding is 5,
               Cellspacing is 3
              Caption is CSS Browser Support (latest
               browser versions)
………………………………………………………………………………………………………………………………………………………………………………………
      <html>
      <table border="1" cellpadding="5" cellspacing="3">
………………………………………………………………………………………………………………………………………………………………………………………
      <caption>CSS Browser Support (latest btowser versions)</caption>
………………………………………………………………………………………………………………………………………………………………………………………
      <tr>
      <th>CSS property</th>
………………………………………………………………………………………………………………………………………………………………………………………
      <th>Internet Explorer</th>
      <th>Firefox</th>
………………………………………………………………………………………………………………………………………………………………………………………
      <th>Chrome</th>
………………………………………………………………………………………………………………………………………………………………………………………
      </tr>
      <tr>
………………………………………………………………………………………………………………………………………………………………………………………
      <th>Border Radius</th>
      <td>YES</TD>
………………………………………………………………………………………………………………………………………………………………………………………
      <TD> YES</TD>
      <TD>YES</TD>
………………………………………………………………………………………………………………………………………………………………………………………
      </TR>
………………………………………………………………………………………………………………………………………………………………………………………
      <TR>
      <TH> Box Shadow </TH>
………………………………………………………………………………………………………………………………………………………………………………………
      <TD>YES</TD>
      <TD>YES</TD>
………………………………………………………………………………………………………………………………………………………………………………………
      <TD>YES</TD>
………………………………………………………………………………………………………………………………………………………………………………………
      </TR>
      <TR>
………………………………………………………………………………………………………………………………………………………………………………………
      <TH> CSS Animation</TH>
      <TD>NO</TD>
………………………………………………………………………………………………………………………………………………………………………………………
      <TD>NO</TD>
      <TD>Yes</TD>
………………………………………………………………………………………………………………………………………………………………………………………
      </TR>
………………………………………………………………………………………………………………………………………………………………………………………
      </TABLE>
      </HTML>
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………
TERM – 3                                                               2
MIS                                                    ICT                    GRADE 7
TERM 3                                                                                             1
 MIS                                         ICT          GRADE 7
 TERM 3                                                                    2
MIS                                                                ICT                                           GRADE 7
      ..........................................................................................................................................
      ..........................................................................................................................................
              <table>
      ..........................................................................................................................................
              <tr>
      ..........................................................................................................................................
              <th> First Name</th>
      ..........................................................................................................................................
              <th> Last name</th>
      ..........................................................................................................................................
      ..........................................................................................................................................
              <th> Age</th>
      ..........................................................................................................................................
              </tr>
      ..........................................................................................................................................
              <tr>
      ..........................................................................................................................................
              <td> Priya</td>
      ..........................................................................................................................................
      ..........................................................................................................................................
              <td> Sharma </td>
      ..........................................................................................................................................
              <td>24</td>
      ..........................................................................................................................................
              </tr>
      ..........................................................................................................................................
      ..........................................................................................................................................
              <tr>
      ..........................................................................................................................................
              <td>Arun</td>
      ..........................................................................................................................................
              <td>Singh</td>
      ..........................................................................................................................................
              <td>32</td>
      ..........................................................................................................................................
      ..........................................................................................................................................
              </tr>
      ..........................................................................................................................................
              <tr>
      ..........................................................................................................................................
              <td>
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
      ..........................................................................................................................................
TERM 3                                                                                                                                        3
MIS                            ICT                       Grade 7
Spanning Cells
________________________________________________________
________________________________________________________
One   fundamental feature of table structure is cell spanning, which
is the stretching of a cell to cover several rows or columns.
________________________________________________________
________________________________________________________
________________________________________________________
Column spans
________________________________________________________
 Column spans are created with the colspan attribute in the td or th
 element, stretch a cell to the right to span over the subsequent
________________________________________________________
 columns.
________________________________________________________
________________________________________________________
________________________________________________________
                                                         1|Page
MIS                           ICT                      Grade 7
Row spans
________________________________________________________
  Row spans are created with the rowspan attribute, work just like
________________________________________________________
  column spans, but they cause the cell to span downward over
________________________________________________________
  several rows
________________________________________________________
________________________________________________________
                                                       2|Page
MIS                              ICT               Grade 7
________________________________________________________
 <Html>
 <Head>
________________________________________________________
 <Title> Table Spanning </Title>
________________________________________________________
 </Head>
________________________________________________________
 <Body>
________________________________________________________
 <table border="1">
 <caption> Poster Availability </caption>
________________________________________________________
 <tr>
________________________________________________________
 <th> Poster name</th>
________________________________________________________
 <th> Color</th>
________________________________________________________
 <th colspan="2" >Sizes Available</th>
 </tr>
                                                  3|Page
MIS                         ICT                    Grade 7
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
_______________________________________________________
                                                  4|Page
MIS                                          ICT        GRADE 7
  ………………………………………………………………………………………………………………………………………………………………………………………
  ………………………………………………………………………………………………………………………………………………………………………………………
  ……………………………………………………………………………………………………………………………………………………………………………………..
                           ………………………………………………………………………………………………………………………
                                   <h2>Nested ordered List</h2>
                           ………………………………………………………………………………………………………………………
                           ………………………………………………………………………………………………………………………
                                   <ol>
                           ………………………………………………………………………………………………………………………
                                       <li>Progrmming Languages
                           ………………………………………………………………………………………………………………………
                                       <ol>
                           ………………………………………………………………………………………………………………………
                           ………………………………………………………………………………………………………………………
                                        <li>C</li>
                           ………………………………………………………………………………………………………………………
                                        <li>C++</li>
                           ………………………………………………………………………………………………………………………
                                        <li>Java</li>
                           ………………………………………………………………………………………………………………………
                                        <li>Python</li>
                           ………………………………………………………………………………………………………………………
                                       </ol>
                           ………………………………………………………………………………………………………………………
                                  </li>
                           ………………………………………………………………………………………………………………………
                                       <li>DSA
                           ………………………………………………………………………………………………………………………
                                       <ol>
                           ……………………………………………………………………..…………………………………………………
                                        <li>Array</li>
                           ………………………………………………………………………………………………………………………
                                        <li>Linked List</li>
                           ………………………………………………………………………………………………………………………
                                        <li>stack</li>
                           ………………………………………………………………………………………………..………………………
                                        <li>Queue</li>
                           ……………………………………………………………………………………………………………………….
                                      <li>Trees</li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                         <li>Graphs</li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                        </ol>
………………………………………………………………………………………………………………………………………………………………………………………………
                                   </li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                        <li>Web Technologies
………………………………………………………………………………………………………………………………………………………………………………………………
                                        <ol>
………………………………………………………………………………………………………………………………………………………………………………………………
                                         <li>HTML</li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                         <li>CSS</li>
………………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………………
                                         <li>JavaScript
……………………..………………………………………………………………………………………………………………………………………………………………………
                                           <ol>
………………………………………………………………………………………………………………………………………………………………………………………………
                                            <li>React</li>
…………………………..…………………………………………………………………………………………………………………………………………………………………
                                            <li>Angular</li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                            <li>Vue</li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                           </ol>
………………………………………………………………………………………………………………………………………………………………………………………………
                                   </li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                         <li>Bootstrap</li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                        </ol>
………………………………………………………………………………………………………………………………………………………………………………………………
                                   </li>
………………………………………………………………………………………………………………………………………………………………………………………………
                                    </ol>
………………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………………
………………………………………………………………………………………………………………………………………………………………………………………………
                                                                  2|Page
MIS   ICT   GRADE 7
                      3|Page
MIS                             ICT     GRADE 7
________________________________________________________
________________________________________________________
<HTML>
________________________________________________________
<TABLE BORDER="1">
<TR>
________________________________________________________
<TD>row 1 col 1</TD>
________________________________________________________
<TD>row 1 col 2</TD>
________________________________________________________
<TD>row 1 col 3</TD>
</TR>
________________________________________________________
<TR>
________________________________________________________
<TD COLSPAN="3">This second row spans all three columns</TD>
________________________________________________________
</TR>
<TR>
________________________________________________________
<TD ROWSPAN="2">This cell spans two rows</TD>
________________________________________________________
<TD>row 3 col 2</TD>
________________________________________________________
<TD>row 3 col 3</TD>
</TR>
________________________________________________________
<TR>
________________________________________________________
<TD>row 4 col 2</TD>
________________________________________________________
<TD>row 4 col 3</TD>
</TR>
________________________________________________________
</TABLE>
________________________________________________________
</HTML>
________________________________________________________
________________________________________________________
________________________________________________________
                                 1
MIS                         ICT   GRADE 7
<HTML>
 ________________________________________________________
<TABLE    BORDER="1">
 ________________________________________________________
<CAPTION>A      test table with merged
 ________________________________________________________
cells</CAPTION>
 ________________________________________________________
<TR>
 ________________________________________________________
<TH   ROWSPAN="2"></TH>
 ________________________________________________________
<TH   COLSPAN="2">Average</TH>
 ________________________________________________________
<TH   ROWSPAN="2">Red eyes</TH>
 ________________________________________________________
</TR>
 ________________________________________________________
<TR>
 ________________________________________________________
<TH>height</TH>
 ________________________________________________________
<TH>weight</TH>
 ________________________________________________________
</TR>
 ________________________________________________________
<TR>
 ________________________________________________________
<TH>Males</TH>
 ________________________________________________________
<TD>1.9</TD>
 ________________________________________________________
<TD>0.004</TD>
 ________________________________________________________
<TD>40%</TD>
 ________________________________________________________
</TR>
 ________________________________________________________
<TR>
 ________________________________________________________
<TH>Females</TH>
 ________________________________________________________
<TD>1.7</TD>
 ________________________________________________________
<TD>0.002</TD>
 ________________________________________________________
<TD>43%</TD>
 ________________________________________________________
</TR>
</TABLE>
                             2
</HTML>
MIS                                            ICT        GRADE 7
________________________________________________________
            <font size=“1”>Hiii User</font><br>
            <font size=“2”>Hiii User</font><br>
________________________________________________________
            <font size=“3”>Hiii User</font><br>
________________________________________________________
            <font size=“4”>Hiii User</font><br>
            <font size=“5”>Hiii User</font><br>
________________________________________________________
            <font size=“6”>Hiii User</font><br>
________________________________________________________
            <font size=“7”>Hiii User</font><br>
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
                                                                      1
MIS                              ICT                     GRADE 7
Text
________________________________________________________
   <font color=“red”><h1>My Very First Webpage</font></h1>
________________________________________________________
  <font color=“blue”><h2>My Very First Webpage</font></h2>
________________________________________________________
                                          e</font></h3>
 <font color=“yellow”><h3>My Very First Webpag
________________________________________________________
 <font color=“purple”><h4>My Very First Webpage</font></h4>
________________________________________________________
  <font color=“green”><h5>My Very First Webpage</font></h5>
 <font color=“orange”><h6>My Very First Webpage</font></h6>
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
                                                                   2
MIS                             ICT               GRADE 7
________________________________________________________
                             <table>
________________________________________________________
                               <tr>
________________________________________________________
                  <td rowspan=“2”>Group 1</td>
________________________________________________________
               <td>Data 1</td><td>Data 2</td></tr>
________________________________________________________
             <tr><td>Data 3</td><td>Data 4</td></tr>
________________________________________________________
  <tr><td rowspan=“3”>Group 2</td><td>Data 5</td><td>Data 6
________________________________________________________
        </td></tr><tr><td>Data 7</td><td>Data 8</td></tr>
________________________________________________________
            <tr><td>Data 9</td><td>Data 10</td></tr>
________________________________________________________
                             </table>
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
________________________________________________________
                                                            3
MIS   ICT   GRADE 7
                      4
MIS                                   ICT                           GRADE 7
X<sup>2</sup>+Y <sup>2</sup>
                                       <strike>text</strike>
3. Name the types of spanning cells in html
     rowspan
  1 ……………………………………………   colspan
                      2…………………………………..
4. identify and label the given table whether rowspan or colspan
        rowspan
                                                                    colspan
      5. Write how many colspan and rowspan from the above table.
                                2
         a. Rowspan ……………………………………….
                               3
         b. Colspan …………………………………………
      6. Expand the following html tags
                                  table heading
         a. <th>………………………………………………….
                                  table data
         b. <td>………………………………………………….
                                    table row
         c. <tr> ………………………………………………….
                                                                          1
MIS                                     ICT                               GRADE 7
                                                    <ol>
                                   ___________________________________________________
                                               <li>Html</li>
                                   ___________________________________________________
                                                <li>Css</li>
                                   ___________________________________________________
                                            <li>Javascript</li>
                                   ___________________________________________________
                                             <ul type=“circle>
                                   ___________________________________________________
                                   ___________________________________________________
                                              <li>VueJS</li>
                                   ___________________________________________________
                                             <li>ReactJS</li>
                                   ___________________________________________________
                                            <li>AngularJS</li>
                                   ___________________________________________________
                                                    </ul>
                                   ___________________________________________________
                                   __           <li>Git</li>
______________________________________________________________________________________
                                                    </ol>
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
_
                                                                                2
MIS                                ICT                                 GRADE 7
b. Image name: robot || align right || file format: jpg || file path:
      D:\\Picture\Downloads
                  <img src=“D:\\Picture\Downloads\robot.jpg” align=“center”>
                                      ...................................................................
                                      ...................................................................
                                      ...................................................................
                                      ...................................................................
                                                                                            1
   MIS                                                   ICT                                   GRADE 7
                                             <i>Simplilearn</i>
                                                <b> HTML</b>
            ..........................................................................................................
                                                <u>article</u>
            ..........................................................................................................
            ..........................................................................................................
        3. Write only the title and table heading using suitable tags for the
            output below.
                                                           ........................................................................
                                                                  <title>My First Page</title>
                                                           ........................................................................
                                                                                   <table>
                                                                        <tr><th>Month</th>
                                                           ........................................................................
                                                                <th>Saving</th></tr></table>
                                                           ........................................................................
                                                           .......................................................................
        4. Write a html code for the first row and third row of the shown table
                                                                     <table>
                                    .............................................................................................
                                             <tr> <th colspan=“2”>Expense</th>
                                    .............................................................................................
                                                                        </tr>
                                    .............................................................................................
                                             <tr><td>Priya</td><td>$8</td></tr>
                                    .............................................................................................
        14b write a html code
                          .   for the shown table.
                                                           <table>
        ..........................................................................................................................
<tr><th colspan=“2” rowspan=“2”>Header (spans 2 columns and 2 rows)</th>
     ..........................................................................................................................
                                              <td> data</td></tr>
     ..........................................................................................................................
                                           <tr><td>data</td></tr>
     ..........................................................................................................................
                                               <tr><td>data</td>
                                                   <td>data</td>
     ..........................................................................................................................
                                               <td>data</td></tr>
     ..........................................................................................................................
                                                        </table>
        ..........................................................................................................................
        .                                                                                                            2
MIS                                            ICT                          GRADE 7
         ___________________________________________________________________________
                  <font size=“1”> GeeksforGeeks</font><br>
         ___________________________________________________________________________
         ___________________________________________________________________________
                     <font size=“2”> GeeksforGeeks</font><br>
         ___________________________________________________________________________
                     <font size=“3”> GeeksforGeeks</font><br>
         ___________________________________________________________________________
                    <font size=“4”> GeeksforGeeks</font><br>
         ___________________________________________________________________________
                    <font size=“5”> GeeksforGeeks</font><br>
         ___________________________________________________________________________
                    <font size=“6”> GeeksforGeeks</font><br>
         ___________________________________________________________________________
                  <font size=“7”> GeeksforGeeks</font><br>
         ___________________________________________________________________________
         ___________________________________________________________________________
         ___________________________________________________________________________
         ___________________________________________________________________________
         ___________________________________________________________________________
2. Write <colspan> tag and <rowspan> tag for the given table
1|Page
                                  <table>
         MIS                                                ICT                           GRADE 7
                                               <table>
                   ___________________________________________________________________________
     <tr><td rowspan=“5”>span        rows</td><td colspan=“3”>span column</td>
               ___________________________________________________________________________
</tr><tr><td colspan=“2”>span       columns</td><td rowspan=“4”>span both</td></tr>
               ___________________________________________________________________________
                      <tr><td rowspan=“3”>span rows</td></tr>
               ___________________________________________________________________________
                      <tr><td rowspan=“2”>span both</td></tr>
               ___________________________________________________________________________
                                           </table>
                   ___________________________________________________________________________
                   ___________________________________________________________________________
                   ___________________________________________________________________________
                   ___________________________________________________________________________
                   ___________________________________________________________________________
                   ___________________________________________________________________________
                   ___________________________________________________________________________
                   ___________________________________________________________________________
         2|Page
MIS                                    ICT                               GRADE 7
                 <h2>Unordered Disc</h2>
      ___________________________________________________________________________
                       <ul type=“disc”>
      ___________________________________________________________________________
                          <li>Lion</li>
      ___________________________________________________________________________
                          <li>Tiger</li>
      ___________________________________________________________________________
                         <li>Giraffe</li>
      ___________________________________________________________________________
                     <li>Camel</li></ul>
      ___________________________________________________________________________
                   <h2>Top Rhymes</h2>
                      <ul type=“square”>
      ___________________________________________________________________________
              <li>Johnny Johny Yes papa</li>
      ___________________________________________________________________________
                 <li>Wheels on the Bus</li>
      ___________________________________________________________________________
               <li>Baa Baa Black Sheep</li>
      ___________________________________________________________________________
                              </ul>
      ___________________________________________________________________________
                 <h2>Fruits Name List</h2>
      ___________________________________________________________________________
                       <ul type=“circle”>
      ___________________________________________________________________________
                       <li>Avacado</li>
      ___________________________________________________________________________
                        <li>Orange</li>
      ___________________________________________________________________________
                         <li>Pears</li>
                     <li>Banana</li></ul>
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
      ___________________________________________________________________________
3|Page
MIS                                                                               ICT                                     GRADE 7
                                                                         Term 3
                                                                    Revision sheet – 1
Name: …………………………………..                                                                                                                                 Sec: ……..
1. Write an image tag for the given picture
   Image name: laptop || format: jpg || alignment: left
</html>
                                                                                                                                                           1|Page
MIS                                                     ICT                        GRADE 7
6. Refer the given output and write a html tag in the shown space.
                                                                <h1>This is a heading level 1</h1>
                                                        …………………………………………………………………………………………
                                                            <h2> This is a heading level 2</h2>
                                                        ………………………………………………………………….………………………
                                                            <p> This text is <b>bold</b></p>
                                                        …………………………………………………………………………………………
                                                        …………………………………………………………………………………………
                                                              <p> This text is <i>italic</i></p>
                                                        …………………………………………………………………………………………
                                                       <p>    This text is <u>underlined</u></p>
                                                        ………………….………………………………………………………………………
                                           <p> This text…………………………………………………………………………………………
                                                          is <font size=“1”>smaller </font></p>
                                                        …………………………………………………………………………………………
                                            <p> This text…………………………………………………………….……………………………
                                                           is <b>This text is important</b></p>
                                                        …………………………………………………………………………………………
                                                        …………………………………….……………………………………………………
                                                        …………………………………………………………………………………………
                                                        ………………………………………………………………………………………….
 …………………………………………………………………………………………………………………………………………………………….……………………………
 …………………………………………………………………………………………………………………………………………………………………………………………
 ………………………………………………………………………………………………….………………………………………………………………………………………
 …………………………………………………………………………………………………………………………………………………………………………………………
 ……………………………………….…………………………………………………………………………………………………………………………………………………
 ………….………………………………………………………………………………………………………………………………………………………………………………
 ………………………………………………………………………………………………………………………………………………………………………………………….
       size 1 – red   size – blue size 3 – green   size 4 - yellow size 5 - pink   size 6- red   size 7 – blue
                           <font size=“1” color=“red”>Font size 1</font><br>
                                    ………………………………………………………………………………………………………………………………
                            <font size=“2” color=“blue”>Font size 2</font><br>
                                    …………………………….…………………………………………………………………………………………………
                           <font size=“3” color=“green”>Font size 3</font><br>
                                    ………………………………………………………………………………………………………………………………
                                    ……………………………………………………………………………………….………………………………………
                             <font size=“4” color=“yellow”>Font size 4</font><br>
                                    ………………………………………………………………………………………………………………………………
                              <font ………………………………………………………………………………………………………………………………
                                    size=“5” color=“pink”>Font size 5</font><br>
                                    ………………….……………………………………………………………………………………………………………
                              <font……………………………………………….………………………………………………………………………………
                                     size=“6” color=“red”>Font size 6</font><br>
                                    ………………………………………………………………………………………………………………………………
                                <font  size=“7” color=“blue”>Font size 7</font><br>
                                    ……………………………………………………………………………………………………………………………..
 …………………………………………………………………………………………………………………………………………………………….………………………………
 ……………………………………………………………………………………………………………………………………………………………………………………………
 …………………………………………………………………………………………….………………………………………………………………………………………………
 ……………………………………………………………………………………………………………………………………………………………………………………………
 …………………………….…………………………………………………………………………………………………………………………………………………………….
 ……………………………………………………………………………………………………………………………………………………………………………………………
 …………………………………………………………………………………………………………………………………………………………………………………………..
                                                                                                           2|Page
MIS                      ICT                            GRADE 7
                                                   Name: ……………………….
                  REVISION SHEET – 3
                                                   Sec: ……
1. Name the types of spanning cells in html
               rowspan and colspan
   ………………………………………………………………………………………………
2. Name the tags for the following outputs
Outputs Tag
<p> tag
<u> <strike>
<rowspan>
<colspan>
<sub>
<sup>
                                         <h1>
                                         <hr>
                                         <p>
                                                                  1
MIS                                           ICT                      GRADE 7
 ………………………………………………………………………………………
       <h1>The p element</p>
 ………………………………………………………………………………………
     <p> This is a paragraph</p>
 ………………………………………………………………………………………
 ………………………………………………………………………………………
     <p> This is a paragraph</p>
 ………………………………………………………………………………………
     <p> This is a paragraph</p>
 ………………………………………………………………………………………
 ………………………………………………………………………………………
 ………………………………………………………………………………………
           <table>
……………………………………………………………………………………………………………………………………………………………………………
……………………………………………………………………………………………………………………………………………………………………………
             <tr>                               <table>
……………………………………………………………………………………………………………………………………………………………………………
 <th rowspan=“3”>APRIL</th>                       <tr>
……………………………………………………………………………………………………………………………………………………………………………
          <td></td>                  <th colspan=“3”>2022</th>
……………………………………………………………………………………………………………………………………………………………………………
        <td></td></tr>
………………………………………………………………………………………………………………………………………………….…………………………
                                             <tr><td></td>
……………………………………………………………………………………………………………………………………………………………………………
        <tr><td></td>                 <td></td><td></td></tr>
……………………………………………………………………………………………………………………………………………………………………………
        <td></td></tr>                  <tr><th rowspan=“2”
……………………………………………………………………………………………………………………………………………………………………………
        <tr><td></td>                colspan=“2”>FIESTA</th>
……………………………………………………………………………………………………………………………………………………………………………
        <td></td></tr>
……………………………………………………………………………………………………………………………………………………………………………
                                            <td></td></tr>
……………………………………………………………………………………………………………………….……………………………………………………
        <tr><td></td>                     <tr><td></td></tr>
……………………………………………………………………………………………………………………………………………………………………………
          <td></td>                          <tr><td></td>
……………………………………………………………………………………………………………………………………………………………………………
        <td></td></tr>                         <td></td>
……………………………………………………………………………………………………………………………………………………………………………
        <tr><td></td>
……………………………………………………………………………………………………………………………………………………………………………
                                            <td></td></tr>
……………………………………………………………………………………………………………………………………………………………………………
          <td></td>                             </table>
…………………………………………………………………………………………………………………………………………………………………………..
      <td></td></tr></table>
                                                                                 2