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>

Monday 31 July 2017

Calculater

Calculater in html

<html>
<head>
<title>HTML Calculator</title>
</head>
<body bgcolor= "red" text= "gold">
<form name="calculator" >
<input type="button" value="1" onClick="document.calculator.ans.value+='1'">
<input type="button" value="2" onClick="document.calculator.ans.value+='2'">
<input type="button" value="3" onClick="document.calculator.ans.value+='3'">
<input type="button" value="4" onClick="document.calculator.ans.value+='4'">
<input type="button" value="5" onClick="document.calculator.ans.value+='5'">
<input type="button" value="6" onClick="document.calculator.ans.value+='6'">
<input type="button" value="7" onClick="document.calculator.ans.value+='7'">
<input type="button" value="8" onClick="document.calculator.ans.value+='8'">
<input type="button" value="9" onClick="document.calculator.ans.value+='9'">
<input type="button" value="0" onClick="document.calculator.ans.value+='0'">
<input type="button" value="+" onClick="document.calculator.ans.value+='+'">
<input type="button" value="-" onClick="document.calculator.ans.value+='-'">
<input type="button" value="*" onClick="document.calculator.ans.value+='*'">
<input type="button" value="/" onClick="document.calculator.ans.value+='/'">
<input type="reset" value="Reset">
<input type="button" value="=" onClick="document.calculator.ans.value=eval(document.calculator.ans.value)">
<br>Solution is <input type="textfield" name="ans" value="">
</form>
<html>


                                                           OUTPUT


Friday 28 July 2017

option_Tag

<html>
<body>

<select>
  <option value="mumbai">mumbai</option>
  <option value="goa">goa</option>
  <option value="delhi">delhi</option>
  <option value="abu">Abu</option>
</select>

</body>
</html>

Center_Tag

<html>
<body>

<p>HELLO.</p>
<center>HELLO.</center>
<p>HELLO</p>

</body>
</html>