USING CONCEPT OF TABLES IN HTML ( # tutorial 14 )

in blurtutorials •  4 years ago 

Yesterday we talked about tables in html and today we are going to use it to create something basic.

Let us create a webpage with a table containing names of all the frotends of blurt.

Final Output :

Screenshot from 2020-11-26 23-50-29.png

STEP 1 : Create a html structure for your file.

STEP 2 : Write following code for your body tag.

Screenshot from 2020-11-26 23-50-24.png

STEP 3 : Run the file with a browser for output.

Screenshot from 2020-11-26 23-50-29.png

Full Code :

  <!DOCTYPE html>

<html>
<head>
   <meta charset="utf-8">
   <title>my first web page is here</title>
 </head>

 <body>
 <h2> Here is the table for different front-ends on Blurt</h2>
    <table>
        <tr><th>S.NO</th><th>Front-End</th></tr>
        
        <tr> <td>1</td><td>&nbsp; Blurt.Blog</td> </tr>
         <tr> <td>2</td><td>&nbsp; Blurt.world</td> </tr>
          <tr> <td>3</td><td>&nbsp; Blurtworld.com</td> </tr>
           <tr> <td>4</td><td>&nbsp; blurtter.com</td> </tr>
            <tr> <td>5</td><td>&nbsp; blurt.buzz</td> </tr>
           
    </table>        

 </body>




We created the desired webpage successfull. try making something useful using concept of tables.

Thank You.

Links for previous tutorials

  1. HTML BASICS AND CREATING PARAGRAPHS
  2. Headings in Html
  3. ANCHOR TAGS IN HTML
  4. Image tag in Html
  5. CREATE YOUR BASIC WEBSITE
  6. Inline Elements in Html
  7. BLOCK ELEMENTS IN HTML
  8. CONCEPT OF IFRAMES IN HTML , FULL TUTORIAL
  9. UNORDERED LIST IN HTML
  10. UNORDERED LIST And Creating Sub list for same
  11. ORDERED LIST IN HTML
  12. Description List in Html
  13. Tables in Html
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE BLURT!