Want to master web development? How To Learn Html is the first step! LEARNS.EDU.VN can guide you through easy-to-understand lessons, turning complex coding into a fun and rewarding skill. Dive into the world of web design with confidence, exploring essential concepts and practical applications that will make you a proficient HTML developer and boost your front-end development skills.
1. Understanding HTML: The Foundation of the Web
HTML, or HyperText Markup Language, is the backbone of every website you see. Understanding how to learn HTML is about mastering the language that structures web content. It’s not a programming language; instead, it’s a markup language that uses tags to define elements like headings, paragraphs, images, and links. This section explores the core concepts of HTML, highlighting its role in web development and setting the stage for your learning journey.
1.1. What is HTML and Why is it Important?
HTML provides the structure for web pages, enabling browsers to interpret and display content correctly. It’s important because it’s the foundation upon which all other web technologies are built, including CSS (for styling) and JavaScript (for interactivity).
Think of HTML as the skeleton of a website. It defines where text, images, videos, and other elements should go. Without HTML, web browsers would not know how to display content meaningfully.
Key Reasons Why HTML is Important:
- Foundation of the Web: HTML is the standard language for creating web pages.
- Browser Compatibility: All browsers understand and can render HTML.
- SEO: Proper HTML structure is crucial for search engine optimization.
- Accessibility: Well-structured HTML makes websites accessible to users with disabilities.
1.2. Basic HTML Structure: Elements, Tags, and Attributes
Understanding the basic structure of HTML documents is key to knowing how to learn HTML effectively. An HTML document consists of elements, which are defined by tags. Tags come in pairs: an opening tag and a closing tag. Attributes provide additional information about elements.
Example of an HTML Element:
<p>This is a paragraph.</p>
In this example:
<p>
is the opening tag, indicating the start of a paragraph.</p>
is the closing tag, indicating the end of the paragraph.- “This is a paragraph.” is the content within the paragraph element.
Common HTML Elements:
<html>
: The root element that encompasses the entire HTML page.<head>
: Contains metadata about the HTML document, such as the title and links to stylesheets.<title>
: Specifies a title for the HTML page (which is shown in the browser’s title bar or tab).<body>
: Contains the visible page content.<h1>
to<h6>
: Defines headings of different levels.<p>
: Defines a paragraph.<a>
: Defines a hyperlink.<img>
: Defines an image.<div>
: Defines a division or a section in an HTML document.<span>
: An inline container used to mark up a part of a text, or a part of a document.
HTML Attributes:
Attributes provide additional information about HTML elements. They are specified in the opening tag and usually come in name-value pairs.
Example of an HTML Element with Attributes:
<a href="https://LEARNS.EDU.VN">Visit LEARNS.EDU.VN</a>
In this example:
href
is the attribute name.https://LEARNS.EDU.VN
is the attribute value, specifying the URL that the link points to.
Common HTML Attributes:
href
: Specifies the URL for hyperlinks (<a>
tag).src
: Specifies the URL for images (<img>
tag).alt
: Specifies an alternative text for images (<img>
tag), which is displayed if the image cannot be loaded.style
: Specifies an inline CSS style for an element.class
: Specifies one or more class names for an element (used by CSS and JavaScript).id
: Specifies a unique id for an element.
1.3. Setting Up Your Development Environment
Before you start writing HTML, you need a development environment. Fortunately, setting one up is straightforward.
Essential Tools:
- Text Editor: A text editor is where you’ll write your HTML code. Popular choices include Visual Studio Code, Sublime Text, and Atom. These editors offer features like syntax highlighting, code completion, and error checking, making coding easier.
- Web Browser: A web browser is used to view your HTML pages. Chrome, Firefox, Safari, and Edge are all good options.
Steps to Set Up Your Environment:
- Install a Text Editor: Download and install a text editor of your choice. Visual Studio Code is highly recommended due to its extensive features and extensions.
- Create an HTML File: Open your text editor and create a new file. Save it with a
.html
extension (e.g.,index.html
). - Write Basic HTML Structure: Start with the basic HTML structure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First HTML Page</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is my first HTML page.</p>
</body>
</html>
- Save the File: Save the file in a location you can easily access.
- Open in a Browser: Navigate to the file location and open the
index.html
file with your web browser. You should see “Hello, World!” as a heading and “This is my first HTML page.” as a paragraph.
Setting up your development environment is a crucial first step in how to learn HTML, providing you with the tools you need to start coding and viewing your web pages.
2. Essential HTML Tags and Elements
To truly understand how to learn HTML, you must become familiar with essential HTML tags and elements. These elements are the building blocks of any web page, defining the structure and content.
2.1. Headings and Paragraphs: Structuring Text Content
Headings and paragraphs are fundamental for organizing and presenting textual content on a web page.
Headings (<h1>
to <h6>
):
Headings are used to define the titles and subtitles within your content. <h1>
represents the main heading, while <h6>
represents the least important.
Example:
<h1>This is a Main Heading</h1>
<h2>This is a Subheading</h2>
<h3>This is a Sub-subheading</h3>
Best Practices for Headings:
- Use only one
<h1>
tag per page, as it represents the main topic. - Use headings in a hierarchical order to structure your content logically.
- Keep headings concise and descriptive.
Paragraphs (<p>
):
Paragraphs are used to define blocks of text. They automatically add a margin before and after the text, creating visual separation.
Example:
<p>This is the first paragraph. It contains introductory information about the topic.</p>
<p>This is the second paragraph. It provides more details and examples.</p>
Best Practices for Paragraphs:
- Keep paragraphs focused on a single idea or topic.
- Use clear and concise language.
- Break up long blocks of text into shorter paragraphs for better readability.
2.2. Links and Images: Adding Interactivity and Visuals
Links and images are essential for adding interactivity and visual appeal to your web pages.
Links (<a>
):
Links, or hyperlinks, connect one web page to another, either within the same website or to an external site. The href
attribute specifies the destination URL.
Example:
<a href="https://LEARNS.EDU.VN">Visit LEARNS.EDU.VN</a>
Attributes for Links:
href
: Specifies the URL of the link.target
: Specifies where to open the linked document. Common values include_blank
(opens in a new tab or window),_self
(opens in the same frame as it was clicked),_parent
(opens in the parent frame), and_top
(opens in the full body of the window).title
: Specifies extra information about the link, which is often shown as a tooltip when the mouse moves over the link.
Images (<img>
):
Images add visual content to your web pages. The src
attribute specifies the URL of the image file, and the alt
attribute provides alternative text if the image cannot be displayed.
Example:
<img src="image.jpg" alt="A descriptive image">
Attributes for Images:
src
: Specifies the URL of the image.alt
: Specifies alternative text for the image.width
: Specifies the width of the image in pixels.height
: Specifies the height of the image in pixels.
Best Practices for Images:
- Use descriptive
alt
text for accessibility and SEO. - Optimize images for the web to reduce file size and improve page load times.
- Specify
width
andheight
attributes to prevent layout shifts as the page loads.
2.3. Lists: Organizing Information
Lists are used to present information in an organized and structured manner. HTML provides two main types of lists: ordered lists and unordered lists.
Unordered Lists (<ul>
):
Unordered lists are used to display items in no particular order. Each item is marked with a bullet point.
Example:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Ordered Lists (<ol>
):
Ordered lists are used to display items in a specific order. Each item is marked with a number or letter.
Example:
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
List Items (<li>
):
List items are used inside both unordered and ordered lists to define each item in the list.
Best Practices for Lists:
- Use unordered lists for items where the order doesn’t matter.
- Use ordered lists for items where the order is important.
- Keep list items concise and focused.
- Nest lists to create hierarchical structures.
2.4. Divs and Spans: Grouping Content
Divs (<div>
) and spans (<span>
) are used to group HTML elements for styling and layout purposes.
Divs (<div>
):
Divs are block-level elements that create a division or section in an HTML document. They are commonly used to group related elements together.
Example:
<div>
<h2>Section Title</h2>
<p>This is the content of the section.</p>
</div>
Spans (<span>
):
Spans are inline elements used to mark up a part of a text or a part of a document. They are typically used for styling specific portions of text.
Example:
<p>This is a <span>special</span> word.</p>
Key Differences:
<div>
is a block-level element, meaning it starts on a new line and takes up the full width available.<span>
is an inline element, meaning it does not start on a new line and only takes up as much width as necessary.
Best Practices for Divs and Spans:
- Use
<div>
to group larger sections of content. - Use
<span>
to style or manipulate smaller portions of text. - Avoid overusing
<div>
and<span>
, as too many can make your HTML harder to read and maintain.
Mastering these essential HTML tags and elements is crucial for learning how to learn HTML and build well-structured and engaging web pages.
3. Formatting HTML Elements
Formatting HTML elements is essential to making web pages visually appealing and user-friendly. This involves using various HTML tags and attributes to control the appearance of text, add emphasis, and structure content effectively. Understanding these formatting techniques is a key aspect of how to learn HTML.
3.1. Text Formatting: Bold, Italics, and More
HTML provides several tags for formatting text, including bold, italics, and other stylistic enhancements.
Bold Text (<b>
and <strong>
):
The <b>
tag is used to make text bold. However, it is primarily a presentational element, meaning it only affects the appearance of the text. The <strong>
tag, on the other hand, indicates that the text is important and should be emphasized.
Example:
<p>This is <b>bold</b> text.</p>
<p>This is <strong>important</strong> text.</p>
Italic Text (<i>
and <em>
):
The <i>
tag is used to make text italic. Like <b>
, it is primarily a presentational element. The <em>
tag indicates emphasized text, which is typically displayed in italics.
Example:
<p>This is <i>italic</i> text.</p>
<p>This is <em>emphasized</em> text.</p>
Other Text Formatting Tags:
<mark>
: Defines marked or highlighted text.<small>
: Defines smaller text.<del>
: Defines deleted (removed) text.<ins>
: Defines inserted (added) text.<sub>
: Defines subscript text.<sup>
: Defines superscript text.
Example:
<p>This is <mark>highlighted</mark> text.</p>
<p>This is <small>smaller</small> text.</p>
<p>This is <del>deleted</del> text.</p>
<p>This is <ins>inserted</ins> text.</p>
<p>This is <sub>subscript</sub> text.</p>
<p>This is <sup>superscript</sup> text.</p>
Best Practices for Text Formatting:
- Use
<strong>
and<em>
for semantic emphasis, as they convey meaning in addition to styling. - Use other formatting tags sparingly to avoid cluttering your content.
- Consider using CSS for more advanced text styling options.
3.2. Quotations and Citations
HTML provides elements for marking up quotations and citations, which can improve the readability and credibility of your content.
Blockquotes (<blockquote>
):
The <blockquote>
tag is used to define a section that is quoted from another source. Browsers typically indent <blockquote>
elements.
Example:
<blockquote cite="https://LEARNS.EDU.VN">
<p>This is a quote from LEARNS.EDU.VN.</p>
</blockquote>
The cite
attribute specifies the URL of the source of the quotation.
Quotations (<q>
):
The <q>
tag is used for short, inline quotations. Browsers typically insert quotation marks around <q>
elements.
Example:
<p>As LEARNS.EDU.VN says, <q>HTML is the foundation of the web.</q></p>
Citations (<cite>
):
The <cite>
tag is used to define the title of a creative work (e.g., a book, a song, a movie, a painting).
Example:
<p>The HTML tutorial is from <cite>LEARNS.EDU.VN</cite>.</p>
Best Practices for Quotations and Citations:
- Use
<blockquote>
for longer, block-level quotations. - Use
<q>
for short, inline quotations. - Always provide a source for quotations using the
cite
attribute or other appropriate means. - Use
<cite>
to properly attribute creative works.
3.3. Character Entities: Displaying Special Characters
HTML character entities are used to display characters that are reserved in HTML or that are not easily typed on a keyboard.
Common Character Entities:
<
: Less than (<
)>
: Greater than (>
)&
: Ampersand (&
)
: Non-breaking space©
: Copyright symbol (©
)®
: Registered trademark symbol (®
)
Example:
<p>To display the less than symbol, use <.</p>
<p>© 2024 LEARNS.EDU.VN</p>
Best Practices for Character Entities:
- Use character entities for reserved characters to avoid syntax errors.
- Use character entities for special characters that are not easily typed.
- Refer to a comprehensive list of HTML character entities for more options.
3.4. Semantic HTML: Using Meaningful Tags
Semantic HTML involves using HTML tags that convey the meaning or purpose of the content, rather than just its appearance. This improves accessibility, SEO, and maintainability.
Semantic Elements:
<article>
: Represents a self-contained composition in a document, page, application, or site.<aside>
: Represents a section of a page that is tangentially related to the content around it.<details>
: Creates a disclosure widget in which information is visible only when the widget is toggled into an “open” state.<figcaption>
: Represents a caption or legend describing the rest of the contents of its parent<figure>
element.<figure>
: Represents self-contained content, potentially with an optional caption, that is typically referenced as a single unit.<footer>
: Represents a footer for a document or section.<header>
: Represents introductory content, typically a group of introductory or navigational aids.<main>
: Represents the dominant content of the<body>
of a document.<nav>
: Represents a section of a page that links to other pages or to parts within the page.<section>
: Represents a thematic grouping of content, typically with a heading.<summary>
: Specifies a summary, caption, or legend for a<details>
element’s contents.<time>
: Represents a specific period in time.
Example:
<article>
<header>
<h1>Article Title</h1>
<p>Published on <time datetime="2024-06-14">June 14, 2024</time></p>
</header>
<p>This is the main content of the article.</p>
<footer>
<p>Written by LEARNS.EDU.VN</p>
</footer>
</article>
Benefits of Semantic HTML:
- Accessibility: Screen readers and other assistive technologies can better understand the structure and content of your page.
- SEO: Search engines can better understand the context and relevance of your content.
- Maintainability: Semantic HTML is easier to read, understand, and maintain.
By mastering these formatting techniques and embracing semantic HTML, you can create web pages that are not only visually appealing but also accessible, SEO-friendly, and easy to maintain. This comprehensive approach is essential for anyone serious about learning how to learn HTML effectively.
4. Working with Forms
Forms are a crucial part of web development, allowing users to interact with websites by submitting data. Understanding how to learn HTML forms is essential for creating dynamic and interactive web experiences.
4.1. Creating Basic Forms: The <form>
Element
The <form>
element is the foundation of HTML forms. It defines a form that is used to collect user input.
Basic Syntax:
<form action="submit.php" method="post">
<!-- Form elements go here -->
</form>
Attributes of the <form>
Element:
action
: Specifies the URL where the form data should be sent when the form is submitted.method
: Specifies the HTTP method used to submit the form data. Common values includeget
andpost
.accept-charset
: Specifies the character encodings that the server can handle for the form data.autocomplete
: Specifies whether the form should have autocomplete enabled.name
: Specifies a name for the form.target
: Specifies where to display the response after submitting the form.
Example:
<form action="process_form.php" method="post">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br><br>
<input type="submit" value="Submit">
</form>
In this example, the form will send the data to process_form.php
using the post
method when the user clicks the “Submit” button.
4.2. Input Fields: Text, Email, Password, and More
Input fields are used to collect various types of user input, such as text, email addresses, and passwords.
Common Input Types:
text
: A single-line text input field.email
: An input field for email addresses, with built-in validation.password
: An input field for passwords, which obscures the entered text.number
: An input field for numbers, with optional min, max, and step attributes.date
: An input field for dates.checkbox
: A checkbox for selecting one or more options.radio
: A radio button for selecting a single option from a group.file
: An input field for selecting files to upload.submit
: A button that submits the form.reset
: A button that resets the form fields to their default values.
Example:
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br><br>
<label for="age">Age:</label><br>
<input type="number" id="age" name="age" min="18" max="99"><br><br>
<label for="birthdate">Birthdate:</label><br>
<input type="date" id="birthdate" name="birthdate"><br><br>
<input type="submit" value="Submit">
Attributes of Input Fields:
type
: Specifies the type of input field.id
: Specifies a unique id for the input field (used by labels and JavaScript).name
: Specifies a name for the input field (used to identify the data when the form is submitted).value
: Specifies the initial value of the input field.placeholder
: Specifies a short hint that describes the expected value of the input field.required
: Specifies that the input field must be filled out before submitting the form.readonly
: Specifies that the input field is read-only.disabled
: Specifies that the input field is disabled.min
: Specifies the minimum value for number and date input types.max
: Specifies the maximum value for number and date input types.step
: Specifies the legal number intervals for number input types.
4.3. Text Areas and Select Boxes: Handling Larger Input
For handling larger input or selecting from predefined options, HTML provides text areas and select boxes.
Text Areas (<textarea>
):
The <textarea>
element is used for multi-line text input.
Example:
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" cols="50">
Enter your message here.
</textarea>
Attributes of the <textarea>
Element:
id
: Specifies a unique id for the text area.name
: Specifies a name for the text area.rows
: Specifies the visible number of lines in the text area.cols
: Specifies the visible width of the text area.placeholder
: Specifies a short hint that describes the expected value of the text area.required
: Specifies that the text area must be filled out before submitting the form.readonly
: Specifies that the text area is read-only.disabled
: Specifies that the text area is disabled.
Select Boxes (<select>
):
The <select>
element is used to create a drop-down list of options.
Example:
<label for="country">Country:</label><br>
<select id="country" name="country">
<option value="usa">United States</option>
<option value="canada">Canada</option>
<option value="uk">United Kingdom</option>
<option value="germany">Germany</option>
</select>
Elements Within the <select>
Element:
<option>
: Defines an option in the select box. Thevalue
attribute specifies the value that will be sent to the server when the form is submitted.
Attributes of the <option>
Element:
value
: Specifies the value to be sent to the server.selected
: Specifies that the option should be pre-selected when the page loads.disabled
: Specifies that the option is disabled.
Best Practices for Select Boxes:
- Provide a default option that is pre-selected.
- Use the
label
element to associate the select box with a label. - Use the
optgroup
element to group related options together.
4.4. Form Validation: Ensuring Data Quality
Form validation is the process of ensuring that the data entered into a form is correct and complete before it is submitted. HTML5 provides built-in validation attributes, and JavaScript can be used for more complex validation.
HTML5 Validation Attributes:
required
: Specifies that an input field must be filled out before submitting the form.min
: Specifies the minimum value for number and date input types.max
: Specifies the maximum value for number and date input types.step
: Specifies the legal number intervals for number input types.pattern
: Specifies a regular expression that the input field’s value must match.type="email"
: Validates that the input is a valid email address.type="url"
: Validates that the input is a valid URL.
Example:
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="age">Age:</label><br>
<input type="number" id="age" name="age" min="18" max="99" required><br><br>
<label for="website">Website:</label><br>
<input type="url" id="website" name="website"><br><br>
<label for="postalcode">Postal Code:</label><br>
<input type="text" id="postalcode" name="postalcode" pattern="[A-Za-z]{5}"><br><br>
<input type="submit" value="Submit">
In this example, the “Name,” “Email,” and “Age” fields are required. The “Age” field must be a number between 18 and 99. The “Website” field must be a valid URL. The “Postal Code” field must match the specified regular expression (five alphabetic characters).
JavaScript Validation:
For more complex validation, you can use JavaScript to check the form data before it is submitted.
Example:
<form action="process_form.php" method="post" onsubmit="return validateForm()">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br><br>
<input type="submit" value="Submit">
</form>
<script>
function validateForm() {
var name = document.getElementById("name").value;
var email = document.getElementById("email").value;
if (name == "") {
alert("Name must be filled out");
return false;
}
if (email == "") {
alert("Email must be filled out");
return false;
}
return true;
}
</script>
In this example, the validateForm()
function is called when the form is submitted. If the “Name” or “Email” fields are empty, an alert message is displayed, and the form submission is canceled.
Mastering how to learn HTML forms is a critical skill for any web developer. By understanding the <form>
element, input fields, text areas, select boxes, and form validation techniques, you can create interactive and user-friendly web pages that collect and process user data effectively.
5. Tables in HTML
Tables are used to organize data into rows and columns, providing a structured way to present information on a web page. Understanding how to learn HTML tables is important for creating organized and readable content.
5.1. Creating Basic Tables: The <table>
Element
The <table>
element is the foundation of HTML tables. It defines a table that is used to organize data into rows and columns.
Basic Syntax:
<table>
<!-- Table content goes here -->
</table>
Elements Within the <table>
Element:
<tr>
: Defines a table row.<th>
: Defines a table header cell.<td>
: Defines a table data cell.<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.
Example:
<table>
<caption>Student Grades</caption>
<thead>
<tr>
<th>Name</th>
<th>Subject</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>Math</td>
<td>A</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>Science</td>
<td>B</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Source: LEARNS.EDU.VN</td>
</tr>
</tfoot>
</table>
In this example, the table displays student grades with columns for Name, Subject, and Grade. The <caption>
element provides a title for the table, and the <tfoot>
element provides a source note at the bottom.
5.2. Table Rows and Cells: <tr>
, <th>
, and <td>
Table rows and cells are used to organize data within a table. The <tr>
element defines a table row, the <th>
element defines a table header cell, and the <td>
element defines a table data cell.
Table Rows (<tr>
):
The <tr>
element defines a row in a table.
Example:
<tr>
<th>Name</th>
<th>Subject</th>
<th>Grade</th>
</tr>
Table Header Cells (<th>
):
The <th>
element defines a header cell in a table. Header cells are typically used to label the columns or rows of a table.
Example:
<th>Name</th>
<th>Subject</th>
<th>Grade</th>
Table Data Cells (<td>
):
The <td>
element defines a data cell in a table. Data cells contain the actual data that is displayed in the table.
Example:
<td>John Doe</td>
<td>Math</td>
<td>A</td>
Attributes of Table Cells:
colspan
: Specifies the number of columns a cell should span.rowspan
: Specifies the number of rows a cell should span.headers
: Specifies one or more header cells a cell is related to.scope
: Specifies whether a header cell is a header for a column, row, or group of columns or rows.
Example with colspan
and rowspan
:
<table>
<tr>
<th>Name</th>
<th colspan="2">Contact Information</th>
</tr>
<tr>
<td>John Doe</td>
<td>[email protected]</td>
<td>555-1234</td>
</tr>
<tr>
<th>Total</th>
<td colspan="2">2</td>
</tr>
</table>
5.3. Table Headers, Body, and Footer: <thead>
, <tbody>
, and <tfoot>
To further structure tables, HTML provides elements for grouping the header, body, and footer content.
Table Header (<thead>
):
The <thead>
element groups the header content in a table.
Example:
<thead>
<tr>
<th>Name</th>
<th>Subject</th>
<th>Grade</th>
</tr>
</thead>
Table Body (<tbody>
):
The <tbody>
element groups the body content in a table.
Example:
<tbody>
<tr>
<td>John Doe</td>
<td>Math</td>
<td>A</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>Science</td>
<td>B</td>
</tr>
</tbody>
Table Footer (<tfoot>
):
The <tfoot>
element groups the footer content in a table.
Example:
Source: learns.edu.vn
Benefits of Using <thead>
, <tbody>
, and <tfoot>
:
- Semantic Structure: These elements provide a semantic structure for tables, making them more accessible and easier to understand.
- Styling: You can apply styles specifically to the header, body, or footer of a table.
- Scrolling: In long tables, you can fix the header and footer while scrolling through the body content.
5.4. Styling Tables with CSS
While HTML provides the structure for tables, CSS is used to style them and make them visually appealing.
Common CSS Properties for Tables:
border
: Sets the border around the table and its cells.border-collapse
: Specifies whether table borders should collapse into a single border.width
: Sets the width of the table.text-align
: Sets the horizontal alignment of text within table cells.padding
: Sets the padding around the content within table cells.background-color
: Sets the background color of the table or its cells.color
: Sets the text color of the table or its cells.
Example:
<style>
table {
border-collapse: collapse;
width