Jabbar Khan

Full Stack Web Developer

Basic Structure Tags : Defines the document type and version of HTML. : Root element of an HTML document. : Contains meta-information about the document (e.g., title, scripts, styles). : Sets the title of the document, shown in the browser's title bar or tab. : Contains the content of the document. Text Formatting Tags to : Defines HTML headings (from most important to least important). : Defines a paragraph. : Inserts a line break. : Defines a thematic change in the content (horizontal line). : Emphasizes text (usually italic). : Highlights important text (usually bold). : Defines bold text. : Defines italic text. : Underlines text. : Defines smaller text. : Defines subscripted text. : Defines superscripted text. : Highlights text. : Represents deleted text (usually struck through). : Represents inserted text (usually underlined). Links and Media Tags : Defines a hyperlink. : Embeds an image. : Embeds a video. : Embeds an audio file. : Specifies multiple media resources for or . : Specifies text tracks for or (subtitles, captions). : Defines an image map. : Defines a clickable area within an image map. : Specifies content (like images) that is referenced from the main content. : Defines a caption for a element. Lists Tags : Defines an unordered (bulleted) list. : Defines an ordered (numbered) list. : Defines a list item. : Defines a description list. : Defines a term in a description list. : Describes the term in a description list. Table Tags : Defines a table. : Defines a row in a table. : Defines a header cell in a table. : Defines a cell in a table. : Adds a caption to a table. : Groups the header content in a table. : Groups the body content in a table. : Groups the footer content in a table. : Specifies a group of one or more columns in a table. : Specifies column properties for each column within a . Form Tags : Defines an HTML form for user input. : Defines an input field (text, radio, checkbox, etc.). : Defines a multiline text input control. : Defines a clickable button. : Defines a drop-down list. : Defines an option in a drop-down list. : Defines a label for an element. : Groups related elements in a form. : Defines a caption for the element. : Specifies a list of pre-defined options for an element. : Represents the result of a calculation or user action. : Represents the progress of a task. : Defines a scalar measurement within a known range (e.g., disk usage). Semantic and Structural Tags : Represents introductory content or a set of navigational links. : Defines navigation links. : Specifies the main content of a document. : Specifies independent, self-contained content. : Defines sections in a document, such as chapters. : Defines content aside from the content it is placed in (like a sidebar). : Defines a footer for a document or section. : Provides contact information for the author or owner of a document. : Defines a division or section in an HTML document. : Defines a section in a document, used to group inline-elements. Metadata Tags : Provides metadata about the HTML document (like character set, viewport settings). : Defines the relationship between a document and an external resource (used for linking stylesheets). : Defines style information for a document. : Defines a client-side script (JavaScript). : Defines an alternate content for users that do not support client-side scripts. : Specifies the base URL for all relative URLs in a document. Interactive and Graphics Tags : Used to draw graphics via scripting (usually JavaScript). : Defines vector-based graphics. : Embeds another document within the current document. : Embeds external content, like plugins or multimedia. : Defines an embedded object. : Defines parameters for an element. Deprecated Tags (Avoid Using These) : Specifies the font face, size, and color. : Centers text or content. : Creates a scrolling text effect. : Makes text blink (not supported in most modern browsers). These tags help create the structure, presentation, and behavior of web pages.

HTML (Hypertext Markup Language) tags are used to define elements in a web page

HTML (HyperText Markup Language) is the foundational language of the web, providing the structure for all web pages. Understanding HTML tags is essential for anyone involved in web development, from beginners to advanced developers. This comprehensive guide will cover everything you need to know about HTML tags, including their usage, categories, and best practices.

Introduction to HTML Tags

HTML tags are the building blocks of web pages. They define elements such as headings, paragraphs, links, images, and more. Each HTML tag is enclosed in angle brackets, like <tagname>, and usually comes in pairs: an opening tag and a closing tag, with the content placed between them. Some tags, known as self-closing tags, do not require a closing tag.

Basic Structure of an HTML Document

Before diving into the various HTML tags, it’s important to understand the basic structure of an HTML document. Here’s an example of a simple HTML document:

html
 
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Sample HTML Document</title> </head> <body> <h1>Hello, World!</h1> <p>This is a simple HTML document.</p> </body> </html>

This document consists of several key elements:

  • <!DOCTYPE html>: Declares the document type and version of HTML.
  • <html>: The root element of the HTML document.
  • <head>: Contains meta-information about the document, such as the character set, title, and links to stylesheets.
  • <body>: Contains the visible content of the document.

Now, let’s explore the different categories of HTML tags in detail.

Document Metadata Tags

Metadata tags provide information about the HTML document that is not directly visible to users but is essential for browsers and search engines.

<!DOCTYPE>

The <!DOCTYPE> declaration defines the document type and version of HTML being used. In modern web development, this is typically HTML5, and the declaration looks like this:

html
<!DOCTYPE html>

<html>

The <html> tag is the root element of an HTML document. It contains all other elements of the document. It can also include attributes such as lang to specify the language of the document:

html
<html lang="en">

<head>

The <head> tag contains meta-information about the document, such as the title, character encoding, and links to external resources like CSS stylesheets and JavaScript files. Here’s a breakdown of some common tags used within the <head> section:

  • <title>: Sets the title of the document, which appears in the browser’s title bar or tab.
  • <meta>: Provides metadata such as the character set, author, description, and keywords.
  • <link>: Links external resources like stylesheets.
  • <style>: Defines internal CSS styles.
  • <script>: Links external JavaScript files or contains inline JavaScript.

<meta>

The <meta> tag is used to define metadata about the HTML document. Metadata is typically used by browsers and search engines. Common attributes include charset, name, and content.

Example of a meta tag defining the character set:

html
<meta charset="UTF-8">

<link>

The <link> tag is used to define the relationship between the current document and an external resource, such as a CSS stylesheet. It is typically used within the <head> section:

html
<link rel="stylesheet" href="styles.css">

<style>

The <style> tag is used to include internal CSS within an HTML document. While external stylesheets are preferred for maintainability, internal styles can be useful for small or specific styles:

html
<style> body { background-color: #f0f0f0; } </style>

<script>

The <script> tag is used to include JavaScript code. It can either link to an external JavaScript file or contain inline JavaScript:

html
<script src="script.js"></script>

Or:

html
<script> console.log("Hello, World!"); </script>

<base>

The <base> tag specifies the base URL for all relative URLs in a document. It is usually placed within the <head> section:

html
<base href="https://www.example.com/">

Sectioning Tags

Sectioning tags help structure the content of an HTML document. These tags define different sections, making it easier to organize and navigate the content.

<body>

The <body> tag contains the content of the document that is visible to the user. All text, images, links, and other media elements are placed within this tag.

<header>

The <header> tag represents introductory content or a set of navigational links. It typically contains the document’s title, logo, and main navigation:

html
<header> <h1>Website Title</h1> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header>

<nav>

The <nav> tag defines a set of navigation links. It is commonly used within the <header> or elsewhere to provide site navigation:

html
 
<nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#services">Services</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav>

<main>

The <main> tag specifies the main content of the document. This content is unique to the document, excluding headers, footers, and sidebars:

html
<main> <h2>About Us</h2> <p>This is the main content area of the website.</p> </main>

<section>

The <section> tag defines sections in a document, such as chapters, headers, footers, or any other thematic grouping of content:

html
<section> <h2>Our Services</h2> <p>We offer a range of services including web development, design, and SEO.</p> </section>

<article>

The <article> tag specifies independent, self-contained content. This content could be distributed independently of the rest of the site, such as blog posts, news articles, or forum posts:

html
<article> <h2>Latest News</h2> <p>This is an article about the latest news in the tech industry.</p> </article>

<aside>

The <aside> tag defines content aside from the content it is placed in, like sidebars, pull quotes, or related links:

html
<aside> <h3>Related Articles</h3> <ul> <li><a href="#article1">Article 1</a></li> <li><a href="#article2">Article 2</a></li> </ul> </aside>

<footer>

The <footer> tag defines a footer for a document or section. It typically contains copyright information, links to terms of service, and contact information:

html
<footer> <p>&copy; 2024 Your Company. All rights reserved.</p> </footer>

<address>

The <address> tag provides contact information for the author or owner of a document. This tag is usually found in the footer or contact section:

html
<address> Contact us at: <a href="mailto:info@example.com">info@example.com</a>. </address>

Text Content Tags

Text content tags are used to structure and format the text on a webpage. These tags include headings, paragraphs, lists, and other inline text elements.

Headings: <h1> to <h6>

HTML provides six levels of headings, <h1> to <h6>, with <h1> being the most important (or largest) and <h6> the least important (or smallest):

html
<h1>Main Heading</h1> <h2>Subheading 1</h2> <h3>Subheading 2</h3>

<p>

The <p> tag defines a paragraph of text. Paragraphs are block-level elements, meaning they automatically create a new line after the content:

html
<p>This is a paragraph of text in an HTML document.</p>

<hr>

The <hr> tag represents a thematic break or a horizontal rule. It is often used to separate content or sections visually:

html
<p>Content before the break.</p> <hr> <p>Content after the break.</p>

<pre>

The <pre> tag defines preformatted text, preserving spaces and line breaks exactly as they are written in the HTML:

html
<pre> This text is exactly as formatted. </pre>

<blockquote>

The <blockquote> tag is used for long quotations. It is typically rendered as an indented block of text:

html
<blockquote> "The only limit to our realization of tomorrow is our doubts of today." - Franklin D. Roosevelt </blockquote>

Lists: <ul>, <ol>, <li>

Lists are a fundamental part of HTML, allowing you to present information in an organized manner. There are two main types of lists:

  • <ul>: Unordered list, typically rendered as a bulleted list.
  • <ol>: Ordered list, typically rendered as a numbered list.
  • <li>: List item, used within <ul> or <ol>.

Example of an unordered list:

html
<ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>

Example of an ordered list:

html
<ol> <li>First item</li> <li>Second item</li> <li>Third item</li> </ol>

<dl>, <dt>, <dd>

The <dl> tag defines a description list, which pairs terms with their descriptions. Within a description list:

  • <dt>: Defines the term/name.
  • <dd>: Describes the term/name.

Example of a description list:

html
<dl> <dt>HTML</dt> <dd>HyperText Markup Language</dd> <dt>CSS</dt> <dd>Cascading Style Sheets</dd> </dl>

<figure> and <figcaption>

The <figure> tag specifies self-contained content, like images, diagrams, or illustrations, often with an accompanying <figcaption> for a caption:

html
<figure> <img src="image.jpg" alt="A descriptive image"> <figcaption>An image of a beautiful landscape.</figcaption> </figure>

<div>

The <div> tag is a block-level element that is used to group and organize content. It is often used for styling purposes with CSS:

html
<div class="container"> <h2>Content Section</h2> <p>This is a section within a div.</p> </div>

Inline Text Tags

Inline text tags are used to format and style specific portions of text within a block-level element.

<a>

The <a> tag defines a hyperlink, which is used to link one page to another. The href attribute specifies the destination URL:

html
<a href="https://www.example.com">Visit Example</a>

<em> and <strong>

The <em> tag is used to emphasize text, usually rendering it in italics. The <strong> tag is used to give strong emphasis, typically rendering text in bold:

html
<p>This is <em>emphasized</em> text.</p> <p>This is <strong>strong</strong> text.</p>

<small>

The <small> tag defines smaller text, often used for disclaimers or fine print:

html
<p>This is <small>small</small> text.</p>

<cite>

The <cite> tag is used to define the title of a work, such as a book, article, or movie:

html
<p><cite>The Great Gatsby</cite> is a novel by F. Scott Fitzgerald.</p>

<q>

The <q> tag is used for short, inline quotations. Unlike <blockquote>, it does not create a block-level element:

html
<p>He said, <q>This is a quotation.</q></p>

<abbr>

The <abbr> tag defines an abbreviation or acronym. The title attribute can provide the full form:

html
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>

<time>

The <time> tag is used to define a specific time or date:

html
<p>The event starts at <time>14:00</time> on <time datetime="2024-08-01">August 1, 2024</time>.</p>

<code>, <var>, <samp>, and <kbd>

These tags are used to represent various types of code and user input:

  • <code>: Defines a piece of computer code.
  • <var>: Defines a variable in programming or mathematical expressions.
  • <samp>: Defines sample output from a computer program.
  • <kbd>: Defines keyboard input.

Example of using these tags:

html
<p>To print "Hello, World!" in Python, use the following code:</p> <pre><code>print("Hello, World!")</code></pre> <p>The variable <var>x</var> stores the value.</p> <p>Sample output: <samp>Hello, World!</samp></p> <p>Press <kbd>Ctrl</kbd> + <kbd>C</kbd> to copy.</p>

<sub> and <sup>

The <sub> and <sup> tags are used to create subscript and superscript text, respectively:

html
<p>H<sub>2</sub>O is the chemical formula for water.</p> <p>E=mc<sup>2</sup> is Einstein's mass-energy equivalence formula.</p>

<i>, <b>, <u>

The <i>, <b>, and <u> tags are used for italics, bold, and underlining text:

html
<p>This is <i>italic</i> text.</p> <p>This is <b>bold</b> text.</p> <p>This is <u>underlined</u> text.</p>

<mark>

The <mark> tag highlights text, typically rendering it with a yellow background:

html
<p>This is <mark>highlighted</mark> text.</p>

<ruby>, <rt>, <rp>

These tags are used in East Asian typography to provide pronunciation or annotations:

  • <ruby>: Surrounds the text needing annotation.
  • <rt>: Defines the annotation.
  • <rp>: Provides parentheses around the annotation for browsers that do not support ruby text.

Example:

html
<ruby>漢字<rt>かんじ</rt></ruby>

<bdi> and <bdo>

  • <bdi>: Isolates a span of text that might be formatted differently.
  • <bdo>: Overrides the current text direction.

Example:

html
<p><bdo dir="rtl">This text will be displayed right-to-left.</bdo></p>

<span>

The <span> tag is an inline container that can be used to group text for styling:

html
<p>This is a <span class="highlight">highlighted</span> word.</p>

<br>

The <br> tag inserts a line break:

html
<p>This is the first line.<br>This is the second line.</p>

<wbr>

The <wbr> tag defines a potential line-break:

html
<p>This is a very<appropriate<wbr>ly long word.</p>

Image and Multimedia Tags

Image and multimedia tags are used to embed images, videos, and other media content within an HTML document.

<img>

The <img> tag embeds an image into a webpage. It is a self-closing tag and requires the src attribute to specify the image’s location and the alt attribute for alternative text:

html
<img src="image.jpg" alt="Description of the image">

<map> and <area>

The <map> and <area> tags are used together to create image maps, where different areas of an image can be clickable:

html
<img src="map.jpg" alt="Clickable map" usemap="#map"> <map name="map"> <area shape="rect" coords="34,44,270,350" alt="Region 1" href="region1.html"> <area shape="circle" coords="400,300,50" alt="Region 2" href="region2.html"> </map>

<canvas>

The <canvas> tag is used to draw graphics via scripting (usually JavaScript):

html
<canvas id="myCanvas" width="200" height="100"></canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.fillStyle = "#FF0000"; ctx.fillRect(20, 20, 150, 100); </script>

<audio>

The <audio> tag embeds sound content. It can include controls for play, pause, and volume:

html
<audio controls> <source src="audio.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio>

<video>

The <video> tag embeds video content. Like the <audio> tag, it can include controls:

html
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> Your browser does not support the video tag. </video>

<track>

The <track> tag specifies text tracks for <video> or <audio> elements, like subtitles or captions:

html
<video controls> <source src="movie.mp4" type="video/mp4"> <track src="subtitles_en.vtt" kind="subtitles" srclang="en" label="English"> </video>

<picture> and <source>

The <picture> tag is used for responsive images, allowing different image sources for different devices:

html
<picture> <source media="(min-width: 650px)" srcset="large.jpg"> <source media="(min-width: 465px)" srcset="medium.jpg"> <img src="small.jpg" alt="A responsive image"> </picture>

Metadata and Document Structuring Tags

Metadata tags provide information about the HTML document, while structuring tags help organize the document’s content.

<head>

The <head> tag contains metadata and links to external resources. It is not visible to users but crucial for SEO and document functionality:

html
<head> <title>Document Title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> </head>

<title>

The <title> tag sets the title of the webpage, displayed on the browser’s title bar or tab:

html
<title>My Webpage</title>

<meta>

The <meta> tag provides metadata, such as character set, author, and descriptions:

html
<meta charset="UTF-8"> <meta name="description" content="A brief description of the webpage."> <meta name="author" content="John Doe">

<link>

The <link> tag links external resources like stylesheets:

html
<link rel="stylesheet" href="styles.css">

<style>

The <style> tag allows you to include CSS styles directly within the HTML document:

html
<style> body { background-color: lightblue; } </style>

<script>

The <script> tag embeds JavaScript code or links to external scripts:

html
<script src="script.js"></script>

<base>

The <base> tag sets a base URL for all relative URLs within a document:

html
<base href="https://www.example.com/">

Conclusion

HTML tags are the building blocks of web development, and a thorough understanding of them is essential for creating well-structured, accessible, and visually appealing websites. This comprehensive guide has covered various HTML tags, from basic document structure to text formatting, multimedia integration, and metadata. By mastering these tags and their attributes, you can create web pages that are not only functional but also optimized for user experience and search engines.

Here is a list of all HTML tags:

Document Metadata Tags

  • <!DOCTYPE>: Defines the document type and version of HTML.
  • <html>: Root element of an HTML document.
  • <head>: Contains meta-information about the document.
  • <title>: Defines the title of the document.
  • <base>: Specifies the base URL for all relative URLs in a document.
  • <meta>: Defines metadata about the HTML document.
  • <link>: Defines the relationship between a document and an external resource.
  • <style>: Defines style information for a document.
  • <script>: Defines a client-side script.
  • <noscript>: Provides an alternative content for users with scripts disabled.

Sectioning Tags

  • <body>: Contains the content of the document.
  • <header>: Represents introductory content or navigational links.
  • <nav>: Defines navigation links.
  • <main>: Specifies the main content of the document.
  • <section>: Defines a section in a document.
  • <article>: Specifies independent, self-contained content.
  • <aside>: Defines content aside from the content it is placed in.
  • <footer>: Defines a footer for a document or section.
  • <address>: Provides contact information for the author or owner of a document.

Text Content Tags

  • <h1> to <h6>: Define HTML headings.
  • <p>: Defines a paragraph.
  • <hr>: Represents a thematic change in the content (horizontal rule).
  • <pre>: Defines preformatted text.
  • <blockquote>: Defines a block of quoted text.
  • <ol>: Defines an ordered list.
  • <ul>: Defines an unordered list.
  • <li>: Defines a list item.
  • <dl>: Defines a description list.
  • <dt>: Defines a term/name in a description list.
  • <dd>: Describes a term/name in a description list.
  • <figure>: Specifies self-contained content, like illustrations or diagrams.
  • <figcaption>: Defines a caption for a <figure> element.
  • <div>: Defines a division or section in an HTML document.

Inline Text Tags

  • <a>: Defines a hyperlink.
  • <em>: Emphasizes text (usually renders as italic).
  • <strong>: Defines important text (usually renders as bold).
  • <small>: Defines smaller text.
  • <cite>: Defines the title of a work.
  • <q>: Defines a short inline quotation.
  • <abbr>: Defines an abbreviation or acronym.
  • <time>: Defines a specific time (or date).
  • <code>: Defines a piece of computer code.
  • <var>: Defines a variable in programming or mathematical expressions.
  • <samp>: Defines sample output from a computer program.
  • <kbd>: Defines keyboard input.
  • <sub>: Defines subscripted text.
  • <sup>: Defines superscripted text.
  • <i>: Defines text in italics.
  • <b>: Defines bold text.
  • <u>: Underlines text.
  • <mark>: Highlights text.
  • <ruby>: Defines a ruby annotation (for East Asian typography).
  • <rt>: Defines an explanation or pronunciation of characters (in <ruby>).
  • <rp>: Provides parentheses around a <ruby> text.
  • <bdi>: Isolates a span of text that might be formatted differently.
  • <bdo>: Overrides the current text direction.
  • <span>: Groups inline-elements in a document.
  • <br>: Inserts a single line break.
  • <wbr>: Defines a possible line-break.

Image and Multimedia Tags

  • <img>: Embeds an image.
  • <map>: Defines an image map.
  • <area>: Defines a clickable area inside an image map.
  • <canvas>: Used to draw graphics via scripting.
  • <figcaption>: Defines a caption for a <figure> element.
  • <audio>: Embeds sound content.
  • <video>: Embeds video content.
  • <track>: Defines text tracks for <video> or <audio>.
  • <embed>: Embeds external content, like multimedia.
  • <object>: Defines an embedded object.
  • <param>: Defines parameters for an <object> element.
  • <source>: Specifies multiple media resources for <video>, <audio>, or <picture>.
  • <picture>: Contains zero or more <source> elements and one <img> element.

Embedded Content Tags

  • <iframe>: Embeds another document within the current document.
  • <embed>: Embeds external content.
  • <object>: Defines an embedded object.
  • <param>: Defines parameters for an <object> element.

Scripting Tags

  • <script>: Defines a client-side script.
  • <noscript>: Defines an alternate content for users that do not support client-side scripts.
  • <template>: Defines a template fragment for use in the document.
  • <slot>: Defines a placeholder inside a web component.

Demarcating Edits Tags

  • <ins>: Defines inserted text.
  • <del>: Defines deleted text.

Table Tags

  • <table>: Defines a table.
  • <caption>: Defines a table caption.
  • <thead>: Groups the header content in a table.
  • <tbody>: Groups the body content in a table.
  • <tfoot>: Groups the footer content in a table.
  • <tr>: Defines a row in a table.
  • <th>: Defines a header cell in a table.
  • <td>: Defines a cell in a table.
  • <col>: Specifies column properties for each column within a <colgroup>.
  • <colgroup>: Specifies a group of one or more columns in a table.

Forms and Input Tags

  • <form>: Defines an HTML form for user input.
  • <input>: Defines an input control.
  • <textarea>: Defines a multiline text input control.
  • <button>: Defines a clickable button.
  • <select>: Defines a drop-down list.
  • <optgroup>: Defines a group of related options in a drop-down list.
  • <option>: Defines an option in a drop-down list.
  • <label>: Defines a label for an <input> element.
  • <fieldset>: Groups related elements in a form.
  • <legend>: Defines a caption for a <fieldset> element.
  • <datalist>: Specifies a list of pre-defined options for an <input> element.
  • <output>: Represents the result of a calculation.
  • <progress>: Represents the progress of a task.
  • <meter>: Defines a scalar measurement within a known range.

Interactive Elements Tags

  • <details>: Defines additional details that the user can view or hide.
  • <summary>: Defines a visible heading for a <details> element.
  • <dialog>: Defines a dialog box or window.

Deprecated/Obsolete Tags (Avoid Using These)

  • <acronym>: Defines an acronym (Use <abbr> instead).
  • <applet>: Embeds a Java applet (Use <object> instead).
  • <basefont>: Specifies a default font size, color, and face (Use CSS instead).
  • <big>: Defines big text (Use CSS instead).
  • <blink>: Makes text blink (non-standard).
  • <center>: Centers text (Use CSS instead).
  • <font>: Specifies the font face, size, and color (Use CSS instead).
  • <frame>: Defines a window (frame) in a frameset.
  • <frameset>: Defines a set of frames.
  • <noframes>: Provides an alternate content for browsers that do not support frames.
  • <isindex>: Defines a single-line input field (Use <input> instead).
  • <keygen>: Generates a key pair (Removed in HTML5).
  • <marquee>: Creates scrolling text (non-standard).
  • <menuitem>: Defines a command/menu item that the user can invoke (Removed in HTML5).

This list includes all standard HTML tags. Some of these tags are rarely used or deprecated, so it’s important to stay updated with current web development best practices.

 

Web Development Service In Pune

Digital Marketing Service In Pune

Web Design Service In Pune

SEO Service In Pune

Social Marketing Service In Pune

Jabbar Khan Web Developer In Pune

Jabbar Khan Web Developer In Canada

Jabbar Khan Web Developer In UK

Jabbar Khan Web Developer In US

Jabbar Khan Web Developer In Australia

HTML (Hypertext Markup Language) tags are used to define elements in a web page

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to top