Wood table - kitchen, Living and dining room - Canadel Tables. * Final league positions determined by Points Per Game methodology due to season curtailment. Live League Table. This table charts the Premier League ...
HTML table basics - Learn web development | MDN TABLE delivers healthy, nutritious food directly to the homes of 1100 children every week. And, we incorporate nutrition education into our food delivery ...
TABLE Definition & Meaning - Merriam-Webster 11.1 Introduction to tables. The HTML table model allows authors to arrange data -- text, preformatted text, images, links, forms, form fields, other tables ...
table - WordReference.com Dictionary of English A table is an item of furniture with a raised flat top and is supported most commonly by 1 to 4 legs It is used as a surface for working at, eating from or ...
HTML table tag - W3Schools You can build tables to organize information in comments, issues, pull requests, and wikis.
Tables in HTML documents Fully customizable products available in store and a selection of products available exclusively online, quickly delivered to your home.
Tutorials Exercises Certificates Services Menu Search field × Log in Sign Up ★ +1 Get Certified For Teachers Spaces Plus Get Certified For Teachers Spaces Plus My W3Schools Tutorials Exercises Certificates Services Spaces Get Certified Plus Academy Logout ×
Learn AI Tutorial Learn Generative AI Tutorial Learn ChatGPT-3.5 Tutorial Learn ChatGPT-4 Tutorial Learn Google Bard Tutorial Learn Machine Learning Tutorial Learn DSA Tutorial Learn Data Science Tutorial Learn NumPy Tutorial Learn Pandas Tutorial Learn SciPy Tutorial Learn Matplotlib Tutorial Learn Statistics Tutorial Learn Excel Tutorial Learn Google Sheets Tutorial
Web Building
Create a Website HOT! Create a Server NEW Where To Start Web Templates Web Statistics Web Certificates Web Development Introduction to Programming Code Editor Test Your Typing Speed Play a Code Game Cyber Security Accessibility Join our Newsletter
Create a Website HOT! Create a Server NEW Where To Start Web Templates Web Statistics Web Certificates Web Development Introduction to Programming Code Editor Test Your Typing Speed Play a Code Game Cyber Security Accessibility Join our Newsletter
Backend
Learn Python Tutorial Reference Learn SQL Tutorial Reference Learn MySQL Tutorial Reference Learn PHP Tutorial Reference Learn Java Tutorial Reference Learn C Tutorial Reference Learn C++ Tutorial Reference Learn C# Tutorial Learn R Tutorial Learn Kotlin Tutorial Learn Go Tutorial Learn Django Tutorial Reference Learn PostgreSQL Tutorial Learn TypeScript Tutorial Learn ASP Tutorial Reference Learn Node.js Tutorial Reference Learn Raspberry Pi Tutorial Learn Git Tutorial Learn MongoDB Tutorial Learn XML Tutorial Reference
Data Analytics
Learn AI Tutorial Learn Generative AI Tutorial Learn ChatGPT-3.5 Tutorial Learn ChatGPT-4 Tutorial Learn Google Bard Tutorial Learn Machine Learning Tutorial Learn DSA Tutorial Learn Data Science Tutorial Learn NumPy Tutorial Learn Pandas Tutorial Learn SciPy Tutorial Learn Matplotlib Tutorial Learn Statistics Tutorial Learn Excel Tutorial Learn Google Sheets Tutorial
Web Building
Create a Website HOT! Create a Server NEW Where To Start Web Templates Web Statistics Web Certificates Web Development Introduction to Programming Code Editor Test Your Typing Speed Play a Code Game Cyber Security Accessibility Join our Newsletter ×
Full Access Best Value! Front End Certificate Course Web Dev. Certificate Course Web App Certificate Course Web Design Certificate Course
Programs
Full Access Best Value! Front End Certificate Course Web Dev. Certificate Course Web App Certificate Course Web Design Certificate Course
Backend
Python Certificate Course SQL Certificate Course MySQL Certificate PHP Certificate Course Java Certificate Course C Certificate C++ Certificate Course C# Certificate Course R Course Django Certificate NodeJS Certificate TypeScript Certificate Course XML Certificate Course Cyber Security Certificate Course Accessibility Certificate Course
Data Analytics
DSA Exam Data Analytics Course NumPy Course Pandas Course Excel Certificate Social Media Course What is a Certificate? ×
All Our Services
Services filter input ×
W3Schools offers a wide range of services and products for beginners and professionals, helping millions of people everyday to learn and master new skills.
Free Tutorials
Enjoy our free tutorials like millions of other internet users since 1999
References
Explore our selection of references covering all popular coding languages
Create a Website
Create your own website with W3Schools Spaces - no setup required
Exercises
Test your skills with different exercises
Quizzes
Test yourself with multiple choice questions
Get Certified
Document your knowledge
Log in / Sign Up
Create a free W3Schools Account to Improve Your Learning Experience
My Learning
Track your learning progress at W3Schools and collect rewards
Upgrade
Become a PLUS user and unlock powerful features (ad-free, hosting, support,..)
Where To Start
Not sure where you want to start? Follow our guided path
Code Editor (Try it)
With our online code editor, you can edit code and view the result in your browser
Videos
Learn the basics of HTML in a fun and engaging video tutorial
Templates
We have created a bunch of responsive website templates you can use - for free!
Web Hosting
Host your own website, and share it to the world with W3Schools Spaces
Create a Server
Create your own server using Python, PHP, React.js, Node.js, Java, C#, etc.
How To's
Large collection of code snippets for HTML, CSS and JavaScript
CSS Framework
Build fast and responsive sites using our free W3.CSS framework
Browser Statistics
Read long term trends of browser usage
Typing Speed
Test your typing speed
Color Picker
Use our color picker to find different RGB, HEX and HSL colors.
Code Game
W3Schools Coding Game! Help the lynx collect pine cones
Newsletter
Join our newsletter and get access to exclusive content every month
For Teachers
Contact us about W3Schools Academy for educational institutions
For Businesses
Contact us about W3Schools Academy for your organization
Contact Us
About sales: sales@w3schools.com About errors: help@w3schools.com
× ❮ ❯ HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING
HTML Tutorial
HTML HOME HTML Introduction HTML Editors HTML Basic HTML Elements HTML Attributes HTML Headings HTML Paragraphs HTML Styles HTML Formatting HTML Quotations HTML Comments HTML Colors Colors RGB HEX HSL HTML CSS HTML Links Links Link Colors Link Bookmarks HTML Images Images Image Map Background Images The Picture Element HTML Favicon HTML Page Title HTML Tables HTML Tables Table Borders Table Sizes Table Headers Padding & Spacing Colspan & Rowspan Table Styling Table Colgroup HTML Lists Lists Unordered Lists Ordered Lists Other Lists HTML Block & Inline HTML Div HTML Classes HTML Id HTML Iframes HTML JavaScript HTML File Paths HTML Head HTML Layout HTML Responsive HTML Computercode HTML Semantics HTML Style Guide HTML Entities HTML Symbols HTML Emojis HTML Charsets HTML URL Encode HTML vs. XHTML
HTML Forms
HTML Forms HTML Form Attributes HTML Form Elements HTML Input Types HTML Input Attributes Input Form Attributes
HTML Graphics
HTML Canvas HTML SVG
HTML Media
HTML Media HTML Video HTML Audio HTML Plug-ins HTML YouTube
HTML APIs
HTML Web APIs HTML Geolocation HTML Drag and Drop HTML Web Storage HTML Web Workers HTML SSE
HTML Examples
HTML Examples HTML Editor HTML Quiz HTML Exercises HTML Website HTML Syllabus HTML Study Plan HTML Interview Prep HTML Bootcamp HTML Certificate HTML Summary HTML Accessibility
HTML References
HTML Tag List HTML Attributes HTML Global Attributes HTML Browser Support HTML Events HTML Colors HTML Canvas HTML Audio/Video HTML Doctypes HTML Character Sets HTML URL Encode HTML Lang Codes HTTP Messages HTTP Methods PX to EM Converter Keyboard Shortcuts
HTML Tables
❮ Previous Next ❯
HTML tables allow web developers to arrange data into rows and columns.
Example
Company Contact Country Alfreds Futterkiste Maria Anders Germany Centro comercial Moctezuma Francisco Chang Mexico Ernst Handel Roland Mendel Austria Island Trading Helen Bennett UK Laughing Bacchus Winecellars Yoshi Tannamuri Canada Magazzini Alimentari Riuniti Giovanni Rovelli Italy Try it Yourself
Define an HTML Table
A table in HTML consists of table cells inside rows and columns.
Example
A simple HTML table:
table tr th Company /th th Contact /th th Country /th /tr tr td Alfreds Futterkiste /td td Maria Anders /td td Germany /td /tr tr td Centro comercial Moctezuma /td td Francisco Chang /td td Mexico /td /tr /table Try it Yourself
Table Cells
Each table cell is defined by a td and a /td tag.
td stands for table data.
Everything between td and /td is the content of a table cell.
Example
table tr td Emil /td td Tobias /td td Linus /td /tr /table Try it Yourself
Note: A table cell can contain all sorts of HTML elements: text, images, lists, links, other tables, etc.
Table Rows
Each table row starts with a tr and ends with a /tr tag.
You can have as many rows as you like in a table; just make sure that the number of cells are the same in each row.
Note: There are times when a row can have less or more cells than another. You will learn about that in a later chapter.
Table Headers
Sometimes you want your cells to be table header cells. In those cases use the th tag instead of the td tag:
th stands for table header.
Example
Let the first row be table header cells:
table tr th Person 1 /th th Person 2 /th th Person 3 /th /tr tr td Emil /td td Tobias /td td Linus /td /tr tr td 16 /td td 14 /td td 10 /td /tr /table Try it Yourself
By default, the text in th elements are bold and centered, but you can change that with CSS.
HTML Table Tags
Tag Description table Defines a table th Defines a header cell in a table tr Defines a row in a table td Defines a cell in a table caption Defines a table caption colgroup Specifies a group of one or more columns in a table for formatting col Specifies column properties for each column within a colgroup element thead Groups the header content in a table tbody Groups the body content in a table tfoot Groups the footer content in a table
For a complete list of all available HTML tags, visit our HTML Tag Reference .
HTML Examples CSS Examples JavaScript Examples How To Examples SQL Examples Python Examples W3.CSS Examples Bootstrap Examples PHP Examples Java Examples XML Examples jQuery Examples
Get Certified
HTML Certificate CSS Certificate JavaScript Certificate Front End Certificate SQL Certificate Python Certificate PHP Certificate jQuery Certificate Java Certificate C++ Certificate C# Certificate XML Certificate FORUM ABOUT ACADEMY W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use , cookie and privacy policy .
Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS .