Here is the text I need to generate :
https://i.sstatic.net/HzKP9.png
This represents my HTML code :
<!DOCTYPE html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="style5.css">
<title> Département TI </title>
</head>
<body>
<h1>Département TI</h1>
<ul>
<li>TC</li>
<li>2ème année
<ul>
<li id="a">DSI</li>
<li id="a">SEM</li>
<li id="a">RSI</li>
</ul>
</li>
<li>3ème année</li>
</ul>
</body>
</html>
Additionally, here is my CSS code :
li {list-style-type: none;}
li::before
{
content: "-*-";
}
The output I am currently receiving looks like this: