Tuesday 25 September 2018

Login Form in Html

How to create Login Form in Html?

<html>
<head>
<title>Login Form</title>
<body>
<form method="post" action="" align="center">
<p>Username:<input type="text" name="user" value="username">
<p>Password:<input type="password" name="pass" value="password">
</form>
</body>
</head>
</html>

Image tag in Html

What is image tag?

  • Image tag is very important part of html tag. Image tag is used for import a image on our website. firstly we upload image on server. after that we write the below tag.
      Example:- 

      <img src="image.jpg">

What is Attributes and anchor tag in Html?

Attribues in Html

  • Attributes is the part of a html tag. We can say that attribute is the extra knowledge of a tag like <a href="dinesh.html"></a>..We also knowwn very well whose tag is open then it will be close compulsory..Here is <a href="dinesh.html"></a>. a is tag href is attribute which is provide us extra parameter of a tag..
   Exmple:-
    
     <a href="https://techdineshsaini.blogspot.com/">My Blog</a>

HTML Paragraph and Headline

Paragraph in Html


  • Open and close paragraph with p tag..The opening tag is <p> and the closing tag close with backslace </p>

       Example:-

       <p>This is Paragraph</p>

Heading in Html

  • There are six type of heading in html <h1>,<h2>,<h3>,<h4>,<h5>,<h6> and Each and every heading close with backslace </h1>,</h2>,.....,</h6>. and the <h1> tag having the largest size of font and <h6> tag having the smallest size of font.

  Example:-

<h1>Heading1</h1>

<h2>Heading2</h2>

<h3>Heading3</h3>

<h4>Heading4</h4>

<h5>Heading5</h5>

<h6>Heading6</h6>

Articles