473,505 Members | 16,332 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How can i display list without Bullets?

22 New Member
Expand|Select|Wrap|Line Numbers
  1. !DOCTYPE html>
  2. <html>
  3. <body>
  4. <ul>
  5.   <li>First Name</li>
  6.   <li>Last Name</li>
  7.   <li>Address</li>
  8.   <li>phone number</li>
  9. </ul>  
  10. </body>
  11. </html>
Apr 11 '19 #1
8 26783
gits
5,390 Recognized Expert Moderator Expert
you can use css for that like this:

Expand|Select|Wrap|Line Numbers
  1. list-style-type: none;
Apr 11 '19 #2
AjayGohil
83 New Member
Try this code for list display without bullets
Expand|Select|Wrap|Line Numbers
  1. !DOCTYPE html>
  2. <html>
  3. <body>
  4. <ul style="list-style-type:none">
  5.   <li>First Name</li>
  6.   <li>Last Name</li>
  7.   <li>Address</li>
  8.   <li>phone number</li>
  9. </ul>  
  10. </body>
  11. </html>
May 1 '19 #3
gits
5,390 Recognized Expert Moderator Expert
well to have a valid document it should be

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html>
instead of
Expand|Select|Wrap|Line Numbers
  1. !DOCTYPE html>
but other then that its making good use of the above post :)
May 10 '19 #4
Chilibwe
1 New Member
Call in the list style and set it to none. Using gas. Example:

Expand|Select|Wrap|Line Numbers
  1.   <html>
  2. <head>
  3. <style>  
  4. </head>
  5. <body>
  6.   <ul style = "list-style:none"> <li>home</li> </ul>
  7. </body>
  8. </html>
Jul 17 '21 #5
sakshijn
2 New Member
To create unordered list in HTML, use the <ul> tag.
The list item starts with the <li> tag and will be marked as disc, square, circle, none, etc.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <ul>
  5.   <li>First Name</li>
  6.   <li>Last Name</li>
  7.   <li>Address</li>
  8.   <li>phone number</li>
  9. </ul>  
  10. </body>
  11. </html>
Jul 13 '22 #6
nehaattri
1 New Member
Create HTML and Add CSS...

Here, I am sharing an example of creating an display list without bullets:

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>Title of the document</title>
  5.     <style>
  6.       ul {
  7.         list-style-type: none;
  8.       }
  9.     </style>
  10.   </head>
  11.   <body>
  12.     <h1>W3Docs</h1>
  13.     <p>Our books:</p>
  14.     <ul>
  15.       <li>Learn HTML</li>
  16.       <li>Learn CSS</li>
  17.       <li>Learn Javascript</li>
  18.       <li>Learn Git</li>
  19.     </ul>
  20.   </body>
  21. </html>
Aug 1 '22 #7
zack23
2 New Member
You should do the list style none <ul style = "list-style:none"></ul> then you got the list without bullets.
Reference link.
Aug 4 '22 #8
Vanisha
25 New Member
To display a list without bullets, you can use CSS to change the list-style-type property of the HTML list element (ordered or unordered list) to "none".

For example:
<style>
ul {
list-style-type: none;
}
</style>

<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Feb 7 '23 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

12
6993
by: Steven Bethard | last post by:
So I need to do something like: for i in range(len(l)): for j in range(i+1, len(l)): # do something with (l, l) where I get all pairs of items in a list (where I'm thinking of pairs as sets,...
5
67658
by: Howard Martin | last post by:
I have a page at http://www.develop.check.com.au/hols/ where I'm trying to put a navigation strip on the left of the page. Try as I may, I can't get rid of the bullets and move the list over to the...
5
1658
by: Yoramo | last post by:
Hello is it possible to display images on a ASPX without having them on the disk of the server ? I have images in a DB and whould like to display them on a web page. writing them to disk...
0
2792
by: DarrenWeber | last post by:
# Copyright (C) 2007 Darren Lee Weber # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free...
10
10476
by: Aditya | last post by:
Hi All, I would like to know how it is possible to insert a node in a linked list without using a temp_pointer. If the element is the first element then there is no problem but if it is in...
1
2465
by: AnshuGupta | last post by:
Hello, I have an application coded in .Net c# that has to display the list of available time zones. This application supports both english and french language. Is it possible to display the list...
12
4898
by: petter | last post by:
Hi! I have two questions: one question that regards the COUNT-function, and one about how to display a month even if I don’t have any data for that month. I have an Access database where I want...
7
1726
by: jessy | last post by:
i have a JS function which adds items to a list when the user clicks on a button ADD ITEM now i need to get all the items he added in the list without selecting them !! is that possible ? i need to...
0
1588
by: achenini | last post by:
I want to be able to sort a list without using the sort function. I have this algorithm down: BEGIN make a copy of the list make an empty result list LOOP as long as the copylist isn't...
0
7370
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7021
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7478
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5614
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5035
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4701
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3188
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
755
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
409
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.