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 :-
|
ad
Friday, November 17, 2023
html unordered list
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 :-
php variable
css text align
javascript for loop
Thursday, November 2, 2023
How to insert image in html
How to insert image in html
Q] What Is The Image Tag In HTML?
- The <img src=""> HTML tag is used to display an image on a web page .
- It is a self -closing tag.
- which means it does not need a separate closing tag
- The <img> tag use embed image in HTML page.
- Image are not technically insert in web page.
- image are linked to the web pages.
- The <img> tag is empty it contains attributes only and does not have a closing tag.
Syntax :-
<img src="image_path" alt="alternative -text" >
Q] What Are Image Tag.?
- src is use to specify the path to image.
- It is a necessary attribute that describes source or path of the image.
- It instructs the browser look for the image on the server .
- specifies the path to image.
2] alt :-- The alt attribute defines alternate text for image it cant be displayed .
- The value of the alt attribute describe the image information the image in words.
- The alt attribute is considered best /good SEO prospective.
3] Width :-
- width is an optional attribute which is used to specify the width to display the image.
- It is used to specify width of the image.
- height is use to specify the height of the image
Syntax:-
<img src=" image-path" alt" image-info" width="image-width-put"
height=" image-height-put">
Program :-
Output:-
👉👉
Related Post
👍👍
Wednesday, November 1, 2023
Html anchor tag
How to Add HTML Anchor Tag
Anchor Tag
1] Html anchor tag define hyperlink this use to link from one page to another.
2] Its create hyperlink to other web page as well as files, location
3] Most important attribute of<a> element is the href attribute.
4] when link is clicked it redirects the user to that page.
5] The <a> tag creates a clickable link.
6] The href attribute sets the target page or site
example:- webdesigningtheory.blogspot.com/
7] The target attribute specifies in what tab ,window to open the new page.
8] Its href <a> attribute creates a hyperlink to web page, files email addresses ,locations in the same page else URL address.
9] hyperlink its important to the website ,web page ,or part of the same web page to link to.
10] In addition to the href attribute website linking to open in another browser tab. you just need to set the value of the target attribute to blank.
11] <a> hyperlink is the Global attribute / event attribute =supports
which indicates the links destination.
default link :
unvisited link -blue
visited link-purple
active link- red
Q. What is the Anchor Tag html?
An anchor is a piece of text which marks the beginning and/or the end of a hypertext link. The text between the opening tag and the closing tag is either the start or destination specifies where to open the linked document.
Syntax











.png)








