Page

Showing posts with label html. Show all posts
Showing posts with label html. Show all posts

Thursday, 4 April 2019

button in html||luv yadav||hishma naaz


 <HTML>
 <HEAD>
 <TITLE> Button Control Form</TITLE>
 <BODY>
 <form>
   <input type="submit" name="submit" value="submit"/>
    <input type="reset" name="reset" value="reset"/>
   <input type="button" name="ok" value="OK"/>
   <input type="image" name="imagebutton" src="welcome scan.jpg"/>
 </form>
 </BODY>
 </HEAD>
 </HTML>


Saturday, 30 March 2019

table background||luv yadav||hishma naaz||


 <HTML>
 <HEAD>
 <TITLE> Tables Background</TITLE>
  <BODY>
 <table border="1" background="welcome scan.jpg">
 <tr>
 <th> Column 1</th>
 <th> Column 2</th>
 <th> Column 3</th>
 </tr>
 <tr>
 <td Rowspan="2"> Row 1 Cell 1 </td>
   <td > Row 1 Cell 2 </td>
  <td> Row 1 Cell 3 </td>
 </tr>
 <tr>
 <td> Row 2 Cell 2</td>
 <td> Row 2 Cell 3</td>
 </tr>
 <tr>
 <td colspan="3"> Row 3 Cell 1</td>
  </tr>
 </table>
 </BODY>
 </HEAD>
 </HTML>




by hishma naaz

Thursday, 28 March 2019

how to set marquee||hishma naaz||luv yadav||


 <HTML>
 <HEAD>
 <TITLE> MARQUEE </TITLE>
 <marquee behaviour="scroll" direction="up" scrollamount="3"> Very Slow Text Scrolling </marquee>
 <marquee behaviour="scroll" direction="left" scrollamount="8"> Slow Text Scrolling </marquee>
 <marquee behaviour="scroll" direction="right" scrollamount="13"> Medium Text Scrolling </marquee>
 <marquee behaviour="scroll" direction="down" scrollamount="18"> Fast Text Scrolling </marquee>
 </HEAD>
 </HTML





Tuesday, 26 March 2019

dropdown menu in html||luv yadav||hishma naaz||


 <HTML>
 <HEAD>
 <TITLE> Selectbox Control Form</TITLE>
 <BODY>
 <form>
   <select name="dropdown">
          <option value="Maths" selected> Maths </option>
          <option value="Physics"> Physics </option>
  </select>
 </form>
 </BODY>
 </HEAD>
 </HTML>




For making drop-down list we use <select> tag (<select name= "drop-down") 

Drop-down list appears when clicking on form element and allows the user to choose one of the options.

The <option> tag is used to define the possible options to choose from. The tag is put into <select> tag.

The first option from the options’ list is selected by default. To change predefined option "selected" attribute is used. ( Option value = "maths" selected)
by hishma naaz






Friday, 15 March 2019

checkbox control part 2||luv yadav||hishma naaz||

<HTML>
<HEAD>
<TITLE> Radio Button Control Form</TITLE>
<BODY>
<form>
   <input type="radio" name="subject" value="maths"> Maths
    <br>
   <input type="radio" name="subject" value="physics"> Physics
</form>
</BODY>
</HEAD>
</HTML>




by HISHMA NAAZ

checkbox control form ||luv yadav||hishma naaz||

<HTML>
<HEAD>
<TITLE> Checkbox Control Form</TITLE>
<BODY>
<form>
   <input type="checkbox" name="maths" value="on"> Maths
    <br>
   <input type="checkbox" name="physics" value="on"> Physics
</form>
</BODY>
</HEAD>
</HTML>




by HISHMA NAAZ

Wednesday, 13 March 2019

program for heading |hishma naaz|

<HTML>
<HEAD>
<TITLE> Headings </TITLE>
<BODY>
<h1> welcome to my webpage </h1>
<h2> welcome to my webpage </h2>
<h3> welcome to my webpage </h3>
<h4> welcome to my webpage </h4>
<h5> welcome to my webpage </h5>
<h6> welcome to my webpage </h6>
</BODY>
</HEAD>
</HTML>



by HISHMA NAAZ

program for text style|hishma naaz|

<HTML>
<HEAD>
<TITLE>Tags</TITLE>
<BODY>
<b> Text in Bold </b>
<i> Text in Italic </i>
<u> Text Underline </u>
<big> Big Text </big>
<small> Small Text </small>
<br> Break Line </br>
<center> Text Centerd </center>
<hr> Horizontal ruler </hr>
</BODY>
</HEAD>
</HTML>




 by HISHMA NAAJ

first program



<HTML>
<HEAD>
<TITLE>first program</TITLE>
<BODY>
 Hello
</BODY>
</HEAD>
</HTML>



      by HISHMA NAAZ