HTML <ul> type Attribute Last Updated : 22 May, 2024 Comments Improve Suggest changes Like Article Like Report The HTML <ul> type attribute in the <ul> tag specifies the type of marker used in an unordered list. Values include disc (default filled circle), circle (hollow circle), square, and none. It controls the appearance of list items. Note: The ul type attributes are not supported by HTML 5. Instead of using this attribute, we can use the CSS list-style-type Property. Syntax: <ul type="disc | circle | square">Attribute Values: disc: Default. A filled circle.circle: An unfilled circlesquare A filled square.HTML <ul> type Attribute ExamplesExample 1: In this example, we display an unordered list without the type attribute. The list contains items from GeeksforGeeks courses: Geeks, Sudo, Gfg, Gate, and Placement. html <!DOCTYPE html> <html> <head> <title>HTML ul type attribute</title> </head> <body> <h2>HTML ul type attribute</h2> <p>GeeksforGeeks courses List:</p> <ul> <li>Geeks</li> <li>Sudo</li> <li>Gfg</li> <li>Gate</li> <li>Placement</li> </ul> </body> </html> Output: HTML ul type attribute Example Output Example 2: In this example we showcasing an unordered list with the type attribute set to "square". The list enumerates GeeksforGeeks courses: Geeks, Sudo, Gfg, Gate, and Placement. html <!DOCTYPE html> <html> <head> <title>HTML ul type attribute</title> </head> <body> <h2>HTML ul type attribute</h2> <p>GeeksforGeeks courses List:</p> <ul type="square"> <li>Geeks</li> <li>Sudo</li> <li>Gfg</li> <li>Gate</li> <li>Placement</li> </ul> </body> </html> Output: HTML ul type attribute Example Output Supported Browsers: The browser supported by HTML <ul> Type attribute are listed below: Google ChromeEdge FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML <ul> type Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-DOM Similar Reads HTML <a> type Attribute The HTML <a> type attribute specifies the MIME type of the linked document. It is not widely used, the type attribute can help browsers to understand the type of content that is being linked. It can be beneficial for certain applications and optimizations.Syntax<a type="media_type">Attri 1 min read HTML | <li> type Attribute The <li> type attribute in HTML is used to specify the type of a list items. This attribute also defines the style of the bullet point of the list items. Syntax: <li type="1|a|A|i|I|disc|circle|square"> Attribute Values: For ordered list items: 1: It is the default value. It is used to s 2 min read HTML <ol> type Attribute The HTML <ol> type attribute specifies the kind of marker to use in the list (letters or numbers). This attribute allows customization of ordered list markers, offering options like decimal numbers, uppercase or lowercase letters, and uppercase or lowercase Roman numerals, tailoring the list a 2 min read HTML <menu> type Attribute The type attribute in <menu> element is used to define the type of menu bar. It is also used with the <menuitem> tag which defines the type of commands of the menu items. Syntax: <menu type="list|context|toolbar">Note: This attribute has been deprecated and is no longer used. Attr 1 min read HTML <style> type Attribute HTML <style> type Attribute is used to specify the MIME type of the <style> Tag. The attribute is used to identify the type of content contained by the <style> Tag. The default value is "text/css" which indicates that the content is CSS. Syntax: <style type="media_type"> Not 1 min read Like