ad
Thursday, November 30, 2023
html radio button
Tuesday, November 21, 2023
HTML form Input Type
HTML FORM
FORM information :-
FORM IS CREATED USING <FORM> TAG.
1) FORM is a window or screen that contains fields or spaces to enter data.
2) Form is user friendly than generating queries.
3) create tables and insert data fields.
4) A form can also have button, checkboxes , radio buttons , menus, other input controls.
5) Form used to submit data to a web server.
6) FORM tag contain various elements as<input>,<select>,<textarea>, <label>,<button>
HTML <INPUT > ELEMENT :-
HTML <input> element form element. used to create form fields, input from use .
input control it set to text.
Attribute :-
1] Type :-
type input control for text input controls set to be text ( use r information).
2] name :-
name used control which is sent to the server to recognize the value.
1] html <Input> element Example :-
html <Input> element Output :-
2] Text Input Control Example:-
Text Input Control OUTPUT :-
HTML <input type ="password"> :-
- Password use to the entered characters are masked or hidden.
- password textbox hide characters.
- password use pattern attribute.
HTML Password Field Controls :- Example
HTML Password Field Controls :- Output
HTML Email field Control :-
<input type ="email">
- Email tag use to the email address defines.
- input value is automatically valid the email address.
HTML Email field Control Example :-
HTML Email field Control :- output/Result
Related Post
HTML Description list | with example
html unordered list
how to add image tag in html
customer login form using html /css
Friday, November 17, 2023
HTML Description List | with Example
HTML Description List
HTML Description List :-
Que. What is dl tag html?
Description list (dl) tag.
They are 3 tag used to define description list.
<dl> ,< dt> & <dd> tag use.
1) <dl> :- tag use to defines the description list.
2) <dt> :- tag used to defines data term /using the element /description terms name.
3) <dd>:- tag defines data definition /description each term.
HTML Description List Example :-
Related Post
html unordered list
html ordered list
html customer login form
Responsive image hrml
html unordered list
Unordered List HTMLQ. what is the unordered list in html?HTML Unordered List :- 1] Unordered list is a Bulleted Format. 2] Unordered list starts with the <ul> tag. 3] Unordered list end </ul> tag. 4] Each unordered list item starts with the <li> tag. 5] Each Unordered list items end with the</li> tag. Syntax :-<ul type=" put the list type ">Que . What is the type of unordered list in html ? Unordered list 4 type of bulleted format. 1) type = "disc" 2) type = "circle" 3) type = "square" 4) type = "none" 1) disc :- disc is the default style. disc list items are maked with bullets. Syntax :-<ul type="disc">HTML Unordered List (disc) Example :-<html> <body> <h1>Unordered list</h1> <h2> disc</h2> <ul type="disc"> <li>Seeta</li> <li>Ram</li> <li>swami</li> <li>Mahadev</li> </ul> </body> <html> HTML Unordered List (disc)Output :-
|
Tuesday, November 14, 2023
html ordered list
HTML List
HTML List :-
Different Type HTML list.
1] Ordered HTML List.
2] Unordered HTML List
3] Description HTML List
1] Ordered HTML List :-
Q. what is the ordered list in html?
- Ordered list is also known as Number list or alphabetical.
- All ordered html list items are marked with the Number in by default.
- Ordered list Starts <ol> tag and closing with the </ol> tag.
- Ordered list each item start with <li> tag and closing with the items </li> tag.
Ordered list represent different Type
1) Numeric Number(1,2,3,4,5)
2) Capital Roman Number (l ,ll , lll , lV)
3) Small Roman Number( i, ii, iii, iv)
4) Capital Alphabet (A,B,C, D)
5) Small Alphabet (a, b, c, d)
Q. How to make ordered list in html.
Ordered HTML List :-
1) Numeric Number -
Ordered html list is numeric number is default type.
Numeric Number is not defining type ="1" .
Example -
Output
2) Capital Roman Number (l ,ll , lll , lV) :-
Capital Roman Number display list in roman number uppercase.
Capital Roman Number is defining type ="I" .
Syntax :-
Ol type="I"
Example -
Capital Roman Number OUTPUT :-
3) Small Roman Number( i, ii, iii, iv) :-
Small Roman Number display list in roman number lowercase.
Small Roman Number is defining type ="i"
Syntax :-
Ol type = "i"
Example -
OUTPUT :-
4)Capital Alphabet (A,B,C, D) :-
Capital Alphabet display list in Uppercase.
Capital Alphabet is defining type ="A"
Ol type = "A"
Example -
OUTPUT
5) Small Alphabet (a, b, c, d) :-
Small Alphabet display list in lowercase.
Small Alphabet is defining type ="a"
Syntax :-
Ol type = "a"
Example -
OUTPUT :-
related Post :-
javascript logical operator
how to create a navigation bar
php program to print increasing triangle
Saturday, November 11, 2023
how to add background image in html.
how to insert background image in html
Program
Background Image
HTML Background Image
The <background> image attribute in the HTML document is used.
you can use the path of image tag value of
background attribute.
Syntax :-
background-image: url('path of image');
Related post :-