Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Tables Table Basics Create a Table

Goutham Bandaru
Goutham Bandaru
2,018 Points

how to fill first row and second row

In the first row, fill the first table cell with the word "Name" and fill the second table cell with the word "Job". Then, fill in the rest of the table cells with any information that you'd like.

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>HTML Tables</title>
  </head>
  <body>
    <table>
       <tr>
        <td>name</td>
        <td>job</td>

      </tr>
      <tr>
        <td>guli</td>
        <td> web designer</td>

      </tr>
        <tr>
              <td>steve</td>
        <td>front end developer</td>

      </tr>
            <tr>
          <td>hacinanda</td>
        <td> front end developer</td>
      </tr>

          <tr>
           <td>Jobs</td>
        <td>web designer</td>
      </tr>


    </table>

  </body>
</html>

2 Answers