ad

Sunday, January 21, 2024

html login in form

 


 How To Create a Login Form


1] The <form> tag in HTML is used to create an HTML form that can be used to collect user input

2] The <form> tag encloses the entire form, defining the boundaries of the form.

3]<form> tag, form elements like <label>, <input>, and <button> for collecting user input.


HTML  login form :-
          
                  Example

<!DOCTYPE html>
<html>
<head>
   <title>Form tag </title>
</head>
<body>
  <center>
   <h2> Login Form </h2>
  <form>
  <input type="text" placeholder="Email address"
id="Email" name="email">
  <br><br>
  <input type ="password" placeholder=
"password" id="pin" name="password"
maxlength="8">
  <br><br>
  <input type ="reset" value ="reset" style=
"background-color: red;
color:white" >
  <input type ="submit" value="submit" style=
"background-color: green;
 color: white">
  </form>
  </center>
</body>


HTML login form :-

       Output 

html form tag /output



Related Post 

e-commerce project for student

how to create a navigation bar

php program to print alphabet pattern D

Wednesday, January 17, 2024

bdo tag in html

 


 HTML <bdo> tag


HTML bdo tag :- output















   1] Bi-Directional is what BOD Tag stands for.

2] The default text direction can be changed by using the HTML tag.

3] To indicate right-to-left text, use the element with the dir property set to "rtl".

4] BDO tag is not commonly used in day-to- day.

5] HTML development unless you're dealing with specific situations involving

bi-directional text.

6] which is use to override the current or default text direction.

7] the html<bdo> tag set the direction of content writing from left - right and right to left.

8] use primarily language reading occurs right to left.

HTML bdo tag :-

Example

 <!DOCTYPE html>
  <html>
  <head>
    <title>html BDO tag </title>
   
    </head>
  <body>
    <h2>Html BDO tag </h2>
     <bdo dir="rtl">Hello friends how are you</bdo>
    </body>
  </html>

 

Related Post :-

program to print inverted pyramid star pattern in php

php program to print alphabet pattern D

what is data type in javascript

Saturday, January 13, 2024

bdi tag in html

 


         HTML <bdi> tag


1]  HTML <bdi> tag  is Bidirectional Isolate Element.

2]  used to inform the browser to isolate to span of text.

3] formatted in different direction from other  text outside.

4]  <bdi> tag text in language that are read from right to left.

5] Within a predominantly left-to-right document. 

web designing theory

HTML <bdi> tag :-
             Example 

<!DOCTYPE html>
<html>

   <head>
      <title>HTML BDI tag</title>
   </head>
        <h2>HTML BDI TAG</h2>
    <ul>
       <li>user<bdi>Aishwarya </bdi> : 60</li>
       <li>user <bdi> Seeta</bdi>  : 70</li>
       <li>user<bdi>  विठ्ठल</bdi>  :80</li>
       <li>user<bdi> Bharat</bdi>  :95</li>
    </ul>
   <body>
   </body>  
   </html>


HTML <bdi> tag :-
           Output

html <bdi> tag /output









Related Post :-

audio tag in html

php data type

php program to print half diamond pattern

Thursday, January 11, 2024

Basefont Tag In Html

   Html <basefont> tag

Html <basefont> tag

  1]  <basefont> tag used in HTML to set a default font size and color text.

 2]   basefont used html fort family for all the text in a web page.

 3]   basefont tag is not supported in HTML5.

 4]   basefont tag is not supported by modern and updated browsers.

 5]   CSS use the style attribute or a separate style sheet apply colors, size, fonts 

      to different html element.

 6]  CSS  provides much more flexibility and control  over styling  compared to the                  <basefont> tag.

7]  <basefont> tag is used the <head> section.


      syntax :-


        <basefont color="red" size="5"font-family="courier-serif">
 


Html <basefont> tag :-

             Program  

<!DOCTYPE html>
  <html>
  <head>
    <title>html basefont tag </title>
     <basefont color="red" size="5"
font-family="courier-serif">
  </head>
  <body>
    <h2>html basefont tag </h2>
    <h3> basefont tag is not support </h3>
    <p> basefont tag used html default
text-color <br>
       and font-size ,font-family  family
html documetn </p>
  </body>
  </html>


Html <basefont> tag :-

            Output

Basefont Tag Tag In Html /OUTPUT










Related Post 

css text align

background color program

static website html tag

bold tag in html

    

 Html Bold Tag


  1]  bold tag is represented by the  <b> tag.

  2]  html <b> tag  display the written text in bold format.

  3]  html <b> strictly a presentational element. 

          Syntax :-

                 <b>

                   :

                 </b>

 html bold tag :-

     Program           

<!DOCTYPE html>
  <html>
  <head>
    <title>html bold tag </title>
  </head>
  <body>
    <p>
       Hi friends
       <b>  how are you </b> <!-- use the bold tag -->
    </p>
    <h5>I am fine</h5>
  </body>
  </html>


 html bold tag :-

         Output

bold tag in html /output









Related Post :-

php program check to even or odd number

contact page design

css element selector