ad

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>


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>

  • <head> contains metadata webpage resources.

  • <title> title tag webpage browser tab.

<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

Saturday, November 29, 2025

what is th tag in HTML

what is th tag  in HTML

https://webdesigningtheory.blogspot.com

what is th tag  in HTML

Syntax 

 Syntax of HTML <th> tag


<th>
.
.
</th>

what is th tag  in HTML

Example 

<!DOCTYPE html>
<html>
    <head>
        <title> html th tag </title>
            </head>
            <body>
                <h2>HTML th Tag </h2>
                <table>
                      <tr>
                        <th>HTML</th>
                        <th>PHP</th>
                          </tr>                  
                          <tr>
                            <th>C</th>
                            <th>JavaScript</th>
                          </tr>
                         
                </table>
            </body>
</html>


what is th tag  in HTML

Explain Program

Friday, November 28, 2025

what is the dt tag in html

what is the dt tag in html

web designing theory

what is the dt tag in html

Syntax 

 Syntax of HTML <dt> tag


<dt>
.
.
</dt>

what is th tag  in HTML

Example

<!DOCTYPE html>
<html>
 <title> HTML dt Tag </title>  
<body>
  <h2>HTML dt tag </h2>
  <p>  easy to learn https://webdesigningtheory.blogspot.com/</p>
   <dl>
    <dt>HTML</dt>
    <dt>PHP</dt>
    <dt>C</dt>
   </dl>
  </body>
</html>


what is the dt 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]

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

<body> tag contains  all the visible content of the page.

inside <body> show the browser screen.

<h2>HTML dt tag </h2>

<h2> tag  is a heading.

<h2> second level  heading tag. 

Step 4]

<p>  easy to learn https://webdesigningtheory.blogspot.com/</p>

<p> tag Paragraph  tag.

display the text.

Step 5]

 <dl>

<dl> tag  means Definition list.

<dl> tag use list terms  and definition.

<dt>

<dt> tag  stands for Definition term

<dl> tag represents a word defines in <dl>  list .

<dt> tag  use  page  will show list of term

<dt>HTML</dt> -> Term 1
    <dt>PHP</dt> -> Term 2
    <dt>C</dt> -> Term 3

Step 6]

   Closing tag  

   
</dl>
</body>
</html>


what is the dt tag in html

Output

what is the dt tag in html







Related Post :-

html how to insert table cells

how to add line breaks in html

how to create paragraphs in html

Thursday, November 27, 2025

what is the dl tag in html

 what is the dl tag in html

web designing theory

what is the dl tag in html

Syntax 

 Syntax of HTML <dl> tag


<dl>
.
.
</dl>

Example 

<!DOCTYPE html>
<html>
  <body>
    <h1> The HTML dl,dd,dt tag element </h1>
    <p>three tag use </p>
    <dl>
      <dt>HTML</dt>
      <dd>Structure of web  content</dd>
      <dt>PHP</dt>
      <dd>create dynamic page</dd>
    </dl>
  </body>
</html>

what is the dl tag in html

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Wednesday, November 26, 2025

how to create table tag in html

How to create table tag in html

https://webdesigningtheory.blogspot.com

Syntax 

 Syntax of HTML <table> tag

<table > . . . . </table>

HTML <table> tag  use create and structure the tabular data.

html table  tag  information in rows and columns.

html <table>     :-  defines the table.

html <tr>           :-  table row

html <th>          :-   table header cell center bold default  th

html <td>          :-   table data cell

html <caption>  :-  table description or title

how to create table tag in html

Example 


<!DOCTYPE html>
<html>
  <head>
    <style>
      table, th,td {
         border:1px solid black;
      }
    </style>
  </head>
<body>
<h1>  Table tag html</h1>
  <table>
    <tr>
       <th> subject </th>
       <th> website</th>
    </tr>
    <tr>
      <th> HTML</th>
      <th> webdesigningtheory.blogspot.com</th>
    </tr>
    <tr>
      <th>PHP</th>
      <th> webdesigningtheory.blogspot.com</th>
    </tr>
  </table>
 
</body>
</html>

how to create table 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>.....</head>

head section contain metadata  about the webpage information 

for the browser not display on the webpage.

Step 4]

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

 <style> tag is use to write css inside the HTML file.

CSS appearance of the webpage ( border, layout, fonts, color width, height ...etc )
 
   CSS Style 
  •  <table>  :-  create whole table .
  •  <th>      :-  create header cells.
  •  <td>     :-   create table data cells.
     border:1px solid black;
   
  1 px solid black border.  

          entire  table 
          header cell
         data cell

 
    </Style>
     
  End the css section 

</head>

    End the head part
 
Step 5]

 <h1>  Table tag html</h1>

  <h1> is the main heading  of the page
       table tag html


<tr>
       <th> subject </th>
       <th> website</th>
    </tr>



  •  table row ( <tr> )  tag html
  •  <tr> tag defines a single row in table.   
  •  define table row 
 
  •  <th> tag  (table header cells) 
  •  Text  bold and  Text Centered by default
  •   use for column titles 
 Step 6]

   Closing tag


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

 

  • <table>,<body>,<html>  tag contains  all the visible content of the page.
  • </table> ends the table.
  • inside <body> show the browser screen.
  • </html>  ends the HTML document 

how to create table tag in html

Output

how to create table tag in html








Related Post :-

how to use the html button input

how to create ordered lists in html

html alignment tag