What bullets can I use in html that search engines will ignore?

  • Thread starter Thread starter cwebbatya
  • Start date Start date
C

cwebbatya

Guest
NO SPAM

Do they ignore dash marks? Cause I can use something as simple as that, I do not care.

Please Help???
 
For the most part, search engines ignore all punctuation. Dashes would work fine. Make sure there is white space between the dash and any words you want to make sure the search engine to index.

If you want your bullets to look nice, you should use the UL and LI HTML tags. For example,
<UL>
<LI> Item 1 </LI>
<LI> Item 2 </LI>
</UL>

The search engine will ignore these bullets as well.
 
Back
Top