Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

Basic Data Tables

Here we will use HTML tables for displaying data on a webpage.

Task

Working in the files index.html and style.css, create a website which meets the following requirements.

Requirements

  • Setup your HTML file with the boilerplate HTML code
  • Create an HTML table with with 4 columns, a table header and 2 rows of data using the following semantic HTML elements;
    • <table>
    • <thead>
    • <tr>
    • <th>
    • <td>
  • Use the data below to fill in your table
  • Add the company logo under the 'Logo' column. The logo should link to the company's website in new tab.
  • Do NOT use deprecated HTML attributes. Style using CSS.

Table Data

Logo Company Phone Website
Logo Microsoft 0800 200 55 88 https://www.microsoft.com/
Logo Amazon 0800 100 38 44 https://www.amazon.de/

Reference Image

Reference