ad

Monday, December 8, 2025

what is caption tag in html

what is caption tag in html

web designing theory

Syntax 

 Syntax of HTML <summary> tag

<caption>.......</caption>

what is caption tag in html

Example 


<!DOCTYPE html>
<html>
  <head>
    <title> HTML Caption tag</title>
    <style>
table, th, td {
  border: 1px solid black;
}
</style>
  </head>
  <body>
    <h2> HTML Caption element</h2>
    <table>
    <caption>Student information</caption>
    <tr>
      <th>Name</th>
      <th>class</th>
          </tr>
           
          <tr>
            <td>Radha</td>
           <td>BCA</td>
          </tr>
         <tr>
          <td>Seeta</td>
          <td>MCA</td>
         </tr>
       </table>
  </body>
</html>

what is caption tag in html

Explain Program

Step  1] 

<!DOCTYPE html>

  • This declare the document type.
  • browser that the document is written in html

Sunday, December 7, 2025

learn HTML summary tag

learn HTML summary tag

https://webdesigningtheory.blogspot.com

Syntax 

 Syntax of HTML <summary> tag

<summary> ....... </summary>

learn HTML summary tag

Example 


<!DOCTYPE html>
<html>
  <head>
    <title> HTML Summary tag </title>
  </head>
  <body>
    <details>
      <summary>HTML summary tag </summary>
      <P>A free HTML web designing course teaches how to structure web pages using
HTML (HyperText Markup Language). It covers essential tags like headings,
          lists, tables, and forms. Students learn HTML document structure html
          ,head, and body and the use of attributes for adding extra
            information to elements. <br> <br> The course introduces HTML5 semantic
            tags like header, footer, section, and article for
              better organization and accessibility. Practical exercises
              include creating simple webpages, navigation menus, and
  content layouts. By the end, learners free HTML code with example
with description
              <big>https://webdesigningtheory.blogspot.com            
      </big></P>
    </details>
  </body>
</html>

learn HTML summary tag

Explain Program

Step  1] 

<!DOCTYPE html>

  • This declare the document type.
  • browser that the document is written in html

Saturday, December 6, 2025

how to use section tag in html

How to use section tag in html

web designing theory

Syntax 

 Syntax of HTML <section> tag

<section>.......</section>

how to use section tag in html
Example 


<!DOCTYPE html>
<html>
    <head>
        <title> html section tag</title>
    </head>
    <body>
      <h1> HTML Section tag</h1>
        <h2> What is the html tag</h2>
              <section>
            <p>
An HTML tag is a building block of a web page used to define
  elements and structure content in HTML (HyperText Markup Language).
  Tags are usually written within angle brackets, like tagname, and
  often come in pairs: an opening tag p and a closing tag /p,
  with the content placed in between. Some tags, like img or br,
  are self-closing and do not need a closing tag. HTML tags tell the
  browser how to display text, images, links, lists, tables, and other
  content. Learning tags is essential to create, format, and structure
  websites effectively </p>
        </section>

        <section>
            <h3> Why learn html language </h3>
            <p>HTML (HyperText Markup Language) is the foundation of the web,
                used to structure content on websites. Learning HTML is essential
                for creating web pages, adding headings, paragraphs, images, links,
                and other elements.beginner-friendly and easy to learn,
              making it the first step for anyone interested in web development.</p>
        </section>
       
    </body>
</html>

how to use section tag in html
Explain Program

Step  1] 

<!DOCTYPE html>

  • This declare the document type.
  • browser that the document is written in html

Friday, December 5, 2025

How to Use the HTML iframe Tag with Examples

How to Use the HTML iframe Tag with Examples

web designing theory

Syntax 

 Syntax of HTML <iframe> tag


<iframe src="URL">
.
.
</iframe>

  • <iframe> tag in HTML use to embed another webpage or external content inside webpage.
  • HTML  <iframe> tag  inline frame tag.   
  • HTML <iframe> tag allows display separate html page small window on your current page.
  • HTML  <iframe> tag embed example :- YouTube videos, Ads, webpages, Twitter, TikTok video, Pinterest Pin ,Facebook

How to Use the HTML iframe Tag with Examples
Example 

<!DOCTYPE html>
<html>
<head>
     
  <title> HTML iframe tag</title>

    </head>
    <body>
        <iframe src="https://webdesigningtheory.blogspot.com"
</iframe>
       
    </body>
</html>

How to Use the HTML iframe Tag with Examples

Explain Program

Step  1] 

<!DOCTYPE html>

  • This declare the document type.
  • browser that the document is written in html

Thursday, December 4, 2025

what is the use of thead tag in html

what is the use of thead tag in html

web designing theory

what is the use of thead tag in html

Example



<!doctype html>
  <html>
  <head>
     
     <title> HTML Input Type Datetime </title>

      </head>
    <body>
        <center>
    <h1> webdesigningtheory.blogspot.com</h1>
 
    <h2> learn HTML thead tag</h2>
    <table>

        <!-- thead tag starts -->
         <thead>
             <tr>
            <th>Student Name</th>
            <th> Roll No </th>
             </tr>
         </thead>
         <!-- thead tag ends -->
          <tbody>
            <tr>
                <td>Seeta</td>
                <td> 01</td>
            </tr>
            <tr>
                <td>radha</td>
                <td>02</td>
            </tr>
            <tr>
                <td>parvati</td>
                <td>03</td>
            </tr>
            <tr>
                <td>sarasvati</td>
                <td>04</td>
            </tr>
            <tr>
                <td>tulja</td>
                <td>05</td>
            </tr>
          </tbody>
     </table>
     </center>
    </body>
    </html>


what is the use of thead tag in html

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Wednesday, December 3, 2025

html input type date format

html input type date format 

web designing theory

Syntax 

 Syntax of HTML <date> tag


  <input type="datetime" id="date">

html input type date format 

Example 

<!DOCTYPE html>
<html>
    <head>
        <title> HTML Input Type Date </title>

    </head>
   <body>
<center>
        <h1> HTML  input type="date" element</h1>
      <form>
         <label>Select your Birthdate :-</label>
        <input type="date" id="date" >
      </form>
    </center>
    </body>
   
   
  </html>

html input type date format 

Explain Program

Tuesday, December 2, 2025

How to use the HTML datetime Attribute

How to use the HTML datetime Attribute

web designing theory

Syntax 

 Syntax of HTML <datetime> tag


  <input type="datetime-local" id="datetime">

How to use the HTML datetime Attribute

Example 

<!DOCTYPE html>
<html>
    <head>
        <title> HTML Input Type Datetime </title>

    </head>
   <body><center>
        <h3> HTML  input type="datetime" element</h3>
      <form>
        <label>Select your DateTime :-</label>
        <input type="datetime-local" id="datetime" >
      </form>
    </center>
    </body>
 
</html>


How to use the HTML datetime Attribute

Explain Program

Monday, December 1, 2025

what is html TR tag

what is html TR tag

web designing theory

HTML tag <tr> tag use create row inside a Table.

row define a row within an html table.functions as container table cells.

Syntax 

 Syntax of HTML <tr> tag


<table>
<tr>
.
. <!-- body tag content visible to webpage-->

</tr>
</table>

how to use TR tag in h

Example 


<!DOCTYPE html>
<html>
    <head>
        <title> HTML TR table tag </title>
    </head>
    <body>
        <tr> Row 1 write content</tr>
        <tr> Row 2 write content</tr>
        <tr> Row 3 write content</tr>
    </body>
</html>

how to use TR tag in html
Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Sunday, November 30, 2025

what is the HTML title tag

what is the HTML title tag 

https://webdesigningtheory.blogspot.com

Syntax 

 Syntax of HTML <title> tag

<head>
     
  <title> HTML Title  tag </title>
    </head>


 HTML  title tag  is an defines the title of a webpage. appears inside the <head> section 

what is the HTML title tag 
Example 

<!DOCTYPE html>
<html>
<head>
    <title> HTML Title  tag  </title>
</head>
<body>
   
    <h1> HTML Title Tag </h1>
    <p>learn Free HTML Language<br> https://webdesigningtheory.blogspot.com</p>
   
</body>
</html>

what is the HTML title tag 
Explain Program

Step  1] 

<!DOCTYPE html>

  • This declare the document type.
  • browser that the document is written in html

What is the TD tag in HTML

What is the TD tag in HTML

https://webdesigningtheory.blogspot.com

Syntax 

 Syntax of HTML <dl> tag


<dl>
.
.
</dl>

What is the TD tag in HTML

Example 

<!DOCTYPE html>
<html>
    <head>
        <title> html td tag </title>
        <style>
          table,th,td{
              border:1px solid black;
          }
        </style>
            </head>
            <body>
                <h2>HTML td Tag </h2>
                <table>
                      <tr>
                        <td>HTML</td>
                        <td>PHP</td>
                          </tr>                  
                          <tr>
                            <td>C</td>
                            <td>JavaScript</td>
                          </tr>
                         
                </table>
            </body>
</html>


What is the TD tag in HTML

Explain Program

Step  1] 

<!DOCTYPE html>

  • This declare the document type.
  • browser that the document is written in html

Step 2 ]

<html>.... . </html>

  • html is the root element of the html page.
  •  Every thing inside it is part of the webpage.

Step 3]

<head>
        <title> html td tag </title>

<style>
          table,th,td{
              border:1px solid black;
          }
        </style>

  HTML code Apply the Style <table>,<th>,<td>.

          1px solid black color              

   CSS applies 

  • <style> Tag 
  • <style> tag use to include CSS (Cascading Style Sheets) directly within HTML Document .
  • Inside the <head> Section html.

<style>
         .
.
        .
</style>

 CSS code defines HTML element 

<body>.....</body>

  • <body> tag contains  all the visible content of the page.
  • inside <body> show the browser screen. 

Step 4]

 
<body>
                <h2>HTML td Tag </h2>

  • <body>  contains data visible of your webpage.
  •  <h2>   2-level heading displaying HTML TD TAG  on page.

Step 5]

<table>
                      <tr>
                        <td>HTML</td>
                        <td>PHP</td>
                          </tr>                  
                          <tr>
                            <td>C</td>
                            <td>JavaScript</td>
                          </tr>
                         
                </table>

  •  <table> creates table  on the webpage.
  •  <tr> tag    ->  tr tag define a table row.
  • <td> tag   -> td tag define table cell (Data call) within row.
  • first row contains 2- cell HTML & PHP.
  • Second row Contains 2- cell  C & JavaScript 

Step 6]

closing the Tag


</table>
</body>
  </html>

What is the TD tag in HTML
Output

What is the TD tag in HTML







Related Post :-

html list attribute tag

html form tag

html frame tag