How can I remove the style of list in HTML programming?

Asked By 20 points N/A Posted on -
qa-featured

How can I remove the style of the list in HTML programming?

I want a plain list and don't want numbered or bulleted list.

Can you give some sample of plain list html codes?

Thanks

SHARE
Answered By 15 points N/A #102017

How can I remove the style of list in HTML programming?

qa-featured

Hi,

You wants to remove number and bullet list option from you text. Number and Bullet feature is under the list tag. Which code is <li></li>. This is a simple code for listing any text line with various bullet or numbering.

There have more bullet in HTML for listing any line except as usual bullet and numbering.

You can use Square, Disc, Circle as your bullet.

<ul type="square">

<ul type="disc">

<ul type="circle">

 If you dislike all kinds of listing tag than you should remove <li></li> tag from your script or web page source code.

It shows plain text in your web page. You may use <p></p> tag too for that.

Thanks

Answered By 590495 points N/A #277498

How can I remove the style of list in HTML programming?

qa-featured

If you want a plain and simple list in your HTML document instead of a numbered list or bulleted list, simply use the list tag <li>. The <li> tag defines a list item and is used in ordered list (numbered list) <ol>, unordered list (bulleted list) <ul>, and menu list <menu>. It should always be used with an end tag </li>.

The list tag <li></li> is supported in all major web browsers such as Google Chrome, Windows Internet Explorer, Mozilla Firefox, Safari, and Opera. See the example below.

Data:

Green
Blue
Red
White
Orange

When the <li> tag is applied:

Data:

<li>Green</li>
<li>Blue</li>
<li>Red</li>
<li>White</li>
<li>Orange</li>

Related Questions