Home > Blockchain >  how to readme file added bullet point
how to readme file added bullet point

Time:05-09

My webSite Link

(http://localhost:3000/)

Website name

Fruit Warehouse

My website Uses Are:

1.React App
2.React Bootstrap
3.css
4.React Bootstrap Hooks.
5.Firebase
6.mongodb
7.No fake data use.

Bullet Points

1.My website has made about fruit Warehouse.
2.This website has a home page(site title ,bannar ,catagori,inventor,review ,login and Register page about)
3.my website Checkout route page is private...Whos going to that login Please.

5.Blogs page has three ans and Qu...Please this page..

6.And Finally My webpage is good looking..Hope Yours fell happy going to my website..

CodePudding user response:

You can add a bullet point in Markdown (if your file is called README.md, md stands for Markdown) with the asterisk symbol (*). For example:

* Item one
* Item two
* Item three

becomes:

  • Item one
  • Item two
  • Item three

If you have an HTML file, you can just use this:

<ul>
  <li>Item one</li>
  <li>Item two</li>
  <li>Item three</li>
</ul> 

which turns in to the same thing.

CodePudding user response:

Use * in README for bullet points.

Look here: https://riptutorial.com/markdown/example/2218/bulleted-lists

Readme uses something called markdown, so in the future it may be helpful to search up markdown help for formatting help.

Hope this helps!

  • Related