Friday 4 August 2017

Blog


Hello Guys
              
                         WELCOME TO MY BLOG                                  
               This blog helps you to learn html & css programming concepts. You can learn html & css language at your own speed and time. 



                 Everyone can teach html & css program easily. and 100+ language available on my blog so Easily Understand.  So Let's Begining With me                                         

                                                                                            Select Right Side For Language-->

                  







I am proud to be INDIAN

Tuesday 1 August 2017

Table_tr_td_th-Tag

<html>
<head>
 </head>
<body>
<table>
  <tr>
   <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>1000</td>
  </tr>
  <tr>
    <td>February</td>
    <td>2000</td>
  </tr>
</table>
</body>
</html

h1toh6_Tag

<html>
<body>
<h1> *</h1>
<h2> *</h2>
<h3> *</h3>
<h4> *</h4>
<h5> *</h5>
<h6> *</h6>

</body>
</html>

Form Tag

<html>
<body>
<form action="/action_page.php">
name: <input type="text" name="Name" value=""><br>
password: <input type="text" name="password" value=""><br>
<input type="submit" value="Submit">
</form>
</body>
</html>