notes3
notes3
------------------------
>it is used to add video to our web page.
>it is denoted by <video> </video>.
>another tag is required inside of video tag that is source src tag.
ex:-
<video height="240" width="380" muted autoplay>
<sourse src="videoname.mp4" type="video/mp4>
</video>
Form tag:-
----------------------------
>it is used to create form in our web page.
>it is denoted by <form> </form> tag.
>to take the input from the user we have to use input tag and which is denoted by
<input type="text">.
ex:-
<form action="">
Name :<input type="text" id="myname">
<br>
Phno :<input type="number" id="myid">
<br>
DOB :<input type="date" id="mydob">
<br>
Email :<input type="email">
<br>
Gender ?Male<input type="radio" name="mygen"> Female<input type="radio"
name="mygen"> others<input type="radio" name="mygen">b o
<br>
Are u 18+ :<input type="checkbox">
<br>
open file :<input type="file">
<br>
chose your range :<input type="range">
<br>
select color :<input type="color">
<br>
password :<input type="password">
<br>
cars :<select name="mycar" id="">
<option value="nano">nano</option>
<option value="swift">swift</option>
<option value="ford">ford</option>
<option value="thar">thar</option>
</select>
<br>
<input type="submit"> <input type="reset">
</form>