ul{
  list-style: circle;
}
/* li별로 지정하는 것도 가능 */
ul > li:first-child{
  list-style: "🚩";
}
ol{
  list-style: lower-alpha;
}