手順

  1. ul、liタグで箇条書きを作る。
  2. ulのリストマークを非表示にする。
  3. beforeの疑似要素で「★」を箇条書きの前に書く。

回答例

https://www.youtube.com/embed/j4v1gfYe6po?si=F_2gR_4txnTmzenx

作成したコード

<!DOCTYPE html>
<html lang="ja">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="css/style.css">
</head>

<body>
    <ul>
        <li>箇条書き</li>
        <li>箇条書き</li>
        <li>箇条書き</li>
        <li>箇条書き</li>
    </ul>
</body>

</html>
ul {
    list-style: none;
}

ul li::before {
    content: "★";
    color: red;
}

ul li::after {
    content: "♪";
}