Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Desafio: Tabelas | Mídias e Tabelas
HTML Supremo

book
Desafio: Tabelas

🏁 Objetivo

Apresentar informações dos funcionários em um formato de tabela estruturada, utilizando tags HTML apropriadas para criar linhas e colunas.

📋 Tarefa

Crie uma tabela com três colunas: Name, Position e Wage. Concentre-se no uso das tags HTML apropriadas para preencher a tabela com as linhas e colunas corretas. Aqui estão os dados a serem incluídos:

  1. Name: Emma Johnson | Position: Sales Associate | Wage: $15.50 per hour;
  2. Name: Liam Thompson | Position: Customer Service Representative | Wage: $14.75 per hour;
  3. Name: Olivia Rodriguez | Position: Marketing Coordinator | Wage: $18.25 per hour;
  4. Name: Noah Smith | Position: IT Support Specialist | Wage: $20.00 per hour;
  5. Name: Ava Davis | Position: Administrative Assistant | Wage: $16.80 per hour.
html

index.html

css

index.css

copy
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<table>
<!-- Columns heading -->
<thead>
<tr>
<th>___</th>
<th>Position</th>
<___>Wage</___>
</tr>
</thead>
<!-- Text for row 1 -->
<tbody>
<tr>
<td>Emma Johnson</td>
<td>___</td>
<td>$15.50 per hour</td>
</tr>
<!-- Text for row 2 -->
<tr>
<___>Liam Thompson</___>
<td>Customer Service Representative</td>
<td>$14.75 per hour</td>
</tr>
<!-- Text for row 3 -->
<___>
<td>Olivia Rodriguez</td>
<td>Marketing Coordinator</td>
<td>$18.25 per hour</td>
</___>
<!-- Text for row 4 -->
<tr>
  1. Utilize a tag table para definir o elemento contêiner principal da tabela;
  2. Utilize a tag thead para agrupar o conteúdo do cabeçalho da tabela, como os títulos das colunas;
  3. Utilize a tag tr para definir uma nova linha dentro da tabela;
  4. Utilize a tag th para definir o texto do cabeçalho para cada coluna;
  5. Utilize a tag tbody para agrupar o conteúdo principal da tabela, que inclui as linhas e as células de dados;
  6. Utilize a tag td para definir os dados ou o conteúdo real dentro de cada célula da tabela.
html

index.html

css

index.css

copy
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<table>
<!-- Columns heading -->
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Wage</th>
</tr>
</thead>
<!-- Text for row 1 -->
<tbody>
<tr>
<td>Emma Johnson</td>
<td>Sales Associate</td>
<td>$15.50 per hour</td>
</tr>
<!-- Text for row 2 -->
<tr>
<td>Liam Thompson</td>
<td>Customer Service Representative</td>
<td>$14.75 per hour</td>
</tr>
<!-- Text for row 3 -->
<tr>
<td>Olivia Rodriguez</td>
<td>Marketing Coordinator</td>
<td>$18.25 per hour</td>
</tr>
<!-- Text for row 4 -->
<tr>
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 4. Capítulo 8
some-alt