Skip to content

letFlavinho/HTML-basics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

HTML-basics

This readme is all about the basics of the table tool which is present in the markup language HTML.

The table tool is used to demark an table in your website.

<table width="400" border="1"> <!-- visual properties  -->
  <thead>
    <tr>
      <th>Item 1</th>   <!-- head of the table  -->
      <th>Item 2</th>	  <!-- head of the table  --> 
    </tr>
  </thead>
  <tbody>
      <tr>
        <td>...</td>
        <td>...</td>
      </tr>
      <tr>
        <td>...</td>
        <td>...</td>
      </tr>
      <tr>
        <td>...</td>
        <td>...</td>
      </tr>
  </tbody>
Item 1 Item 2
... ...
... ...
... ...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published