Skip to content

Muhammad-Sufyan-3051/Html

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTML Basics Overview 🌟

This README provides a detailed overview of basic HTML concepts, including structure, links, images, text formatting, lists, tables, metadata, links, and forms.

Basic Structure 🏗️

An HTML document follows a basic structure consisting of essential tags:

  • <!DOCTYPE html>: Declares the document type and version of HTML being used.
  • <html>: The root element of an HTML document.
  • <head>: Contains metadata and links to external resources.
  • <body>: Contains the content of the HTML document visible to users.

Links and Images 🔗 🖼️

Hyperlinks and images enhance user experience by connecting content and providing visual elements:

  • <a>: Creates hyperlinks to navigate to other web pages.
  • <img>: Embeds images into the HTML document.

Text Formatting ✍️

Text formatting elements help in presenting content in a visually appealing manner:

  • Headings (<h1>, <h2>, etc.): Defines headings of different levels.
  • Paragraphs (<p>): Represents paragraphs of text.
  • Emphasis (<i>): Renders text in italic style.
  • Bold (<b>): Renders text in bold style.

Lists 📝

Lists organize information in a structured format:

  • Ordered list (<ol>): Creates a numbered list.
  • Unordered list (<ul>): Creates a bulleted list.
  • List item (<li>): Represents items within ordered or unordered lists.

Tables 📊

Tables are used to present data in a tabular format:

  • <table>: Defines a table structure.
  • <tr>: Represents a row in a table.
  • <th>: Represents a header cell in a table.
  • <td>: Represents a data cell in a table.

Metadata and Links 📝 🔗

Metadata and links provide additional information and connect resources:

  • <meta>: Provides metadata about the HTML document.
  • <a>: Creates hyperlinks to internal or external resources.

Forms 📝

Forms facilitate user input and interaction:

  • <form>: Defines a form for user input.
  • <input>: Defines input controls within a form (e.g., text fields, checkboxes).
  • <textarea>: Defines a multi-line text input control within a form.

Usage 🚀

Understanding these basic HTML concepts forms the foundation of web development. Experiment with these elements and combine them creatively to build engaging and interactive web pages!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages