Showing posts with label 🙂🙂. Show all posts
Showing posts with label 🙂🙂. Show all posts

Saturday, 31 August 2019

How to make application form using HTML.

Hi, friends!


This is Deepak Sharma, today I have learned about the application form in HTML.The code is easy to understand but
lengthy to write.
It is very useful in many fields as you know about that.

Let's see what the code is,

<html Lang="fr">
   <head>
      <title>Application form</title>
   </head>
<body>
<h1><font face="Algerian" color="black">
         <center>Application form</center>
         </font>
</h1>
<form method="post">
<p><b>first name</b>
       <input type="text" name="first name"/>
</p>
<br>
<p><b>last name</b>
      <input type="text" name="last name"/>
</p>
<br>
<p><b>Email address</b>
      <input type="text" name="Email 
         address"/>
</p>
<br>
<p><b>Sex</b>
       <input type="radio" name="Sex"
          value="Male"/>Male
   <input type="radio" name="Sex" value="Female"/>Female
</p>
<br>
<p><b>Hobbies</b>
   <input type="checkbox" name="Hobbies" value="Painting"/>Painting
   <input type="checkbox" name="Hobbies" value="Reading"/>Reading
</p>
<br>
<p><select name="Jobs">
   <option value="Software engineering">
     Software engineering
   </option>
   <option value="Data entry">Data entry   </option>
   <option value="Doctor">Doctor</option>
   </select>
</p>
<br>
<p><b>Introduction</b>
       <textarea rows="6" cols="50"  name=         "Introduction">Write your text
      </textarea>
</p>
<br>

<input type="submit" value="Send the information"/>
<br><br>
<input type="reset" value="Clear the information"/>
</form>
</body>
</html>

The output is,

You can try it yourself,and checkout the output of the code.

Friday, 30 August 2019

Some tags of HTML.

Hello! friends,


There also some other tags in which you can try in your HTML code.
let's see what is the code,

<html>  
    <head>  
         <title>This is used to put links of other files or website.</title>
    </head>  
    <body>  
        <b>This is bold tag.</b>
        
        <br> 
        
        <i>This is italic tag,which is a text tag.</i>
        <br>
        <u>This is under line tag.</u>
        <br>
        
        <hr> 
        
        <h4>Display of href attribute.</h4>  
        <p>Below is the link of anchor tag, click the link and see the next page</p>  
        <a href="https://www.nasa.gov">This is a link</a>  
    </body>  
</html>  

here,<a> tag is used to put links.
And some other tags are also is used in this code like,
<br>=for line break in HTML.
<hr>=for horizontal line in HTML.

    You can try it of yourself, checkout the output of the code. 

Learn Linux

 Hi, there !  It is Deepak Sharma on this blog today, I am gonna share about my experience about the Linux, there is so much to learn about ...