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

i just excatly added 2 <td> inside of each <tr> , but why your system still give me the wrong answer?

i just excatly added 2 <td> inside of each <tr> , but why your system still give me the wrong answer?

seriously?

can you give the right hint? give the more clearly hint for me

Can we see your code?

yes of course.

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Employee Information</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body>

<table>
  <tr>
      <th>#</th>
      <Th>Employee Name</Th>
      <Th>Email</Th>
      <Th>Division</Th>
      <Th>Department</Th>
      <Th>Job Role / Position</Th>
  </tr>
  <tr>
      <td>1</td>
     <td>Guta Saputra</td>
     <td>gutasaputra@gmail.com</td>
     <td>Information Technology</td>
     <td>Information Technology</td>
     <td>Web Developer</td>

<td></td> <td></td>

  </tr>
  <tr>
      <td>2</td>
     <td>Anis Khairunisa</td>
     <td>aniskhairunisa@gmail.com</td>
     <td>Information Technology</td>
     <td>Information Technology</td>
     <td>Web Developer</td>

<td></td> <td></td> </tr> <tr> <td>3</td> <td>Kiki Simalakama</td> <td>kiki@gmail.com</td> <td>Information Technology</td> <td>Information Technology</td> <td>Web Developer</td> <td></td> <td></td> </tr> <tr> <td>4</td> <td>Fani Nurfuadiah</td> <td>fani@gmail.com</td> <td>Information Technology</td> <td>Information Technology</td> <td>Web Developer</td> <td></td> <td></td> </tr> <tr> <td>5</td> <td>Cici Pandah</td> <td>cici@gmail.com</td> <td>Information Technology</td> <td>Information Technology</td> <td>Web Developer</td> <td></td> <td></td> </tr> </table>

</body> </html>

2 Answers

Hi Guta,

Your code bears no resemblance to the question. You have way more than 2 cells per row. And the question doesn't mention anything about table headings.

<th>

Jeff

okay, thank you jeff. i just try to understand how this system work before i go to my real subject (actually i want to learn about ruby here) . thank you very much. :)